教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php多文件上传下载示例代码

php多文件上传下载示例代码

发布时间:2017-12-21   编辑:jiaochengji.com
分享一个多文件上传下载的php代码,有需要的朋友参考下。

例子,php实现多文件上传下载。

1,html部分
 

复制代码 代码示例:
<html>
<head>
    <meta charset="utf-8">
    <title>index_uploads</title>
</head>
<body>
    <form action="uploads.php" method="post" enctype="multipart/form-data">
        <input type="file" name="file[]">
        <br>
        <input type="file" name="file[]">
        <br>
        <input type="file" name="file[]">
        <br>
        <input type="file" name="file[]">
        <br>
        <input type="file" name="file[]">
        <br>
        <input type="submit" value="uploads">
    </form>
</body>
</html>

2,index_uploads.php
 

复制代码 代码示例:
<?php
    echo "<pre>";
    print_r($_FILES);
    echo "</pre>";
    $count = count($_FILES['file']['name']);
    for ($i = 0; $i < $count; $i++) {
        $tmpfile = $_FILES['file']['tmp_name'][$i];
        $filefix = array_pop(explode(".", $_FILES['file']['name'][$i]));
        $dstfile = "uploads/files/".time()."_".mt_rand().".".$filefix;
        if (move_uploaded_file($tmpfile, $dstfile)) {
            echo "<script>alert('succeed!');window.location.href='listdir.php';</script>";
        } else {
            echo "<script>alert('fail!');window.location.href='index_uploads.php';</script>";
        }
    }

3,文件上传代码 uploads.php
 

复制代码 代码示例:
<?php
    header("content-type:text/html;charset=utf-8");
    $dirname = "uploads/files";
    function listdir($dirname) {
        $ds = opendir($dirname);
        while ($file = readdir($ds)) {
            $path = $dirname.'/'.$file;
            if ($file != '.' && $file != '..'){
                if (is_dir($path)) {
                    listdir($path);
                } else {
                    echo "<tr>";
                    echo "<td><img src='$path'></td>";
                    echo "<td><a href='download.php?imgfile=$file'>Download</a></td>";
                    echo "</tr>";
                }
            }
        }
    }
    echo "<h2>图片下载|<a href='index_uploads.php'>图片上传</a></h2>";
    echo "<table width='700px' border='1px'>";
    listdir($dirname);
    echo "</table>";

4,listdir.php
 

复制代码 代码示例:
<?php
    $imgfile = $_GET['imgfile'];
    $path = './uploads/files/'.$imgfile;
    $imgsize = filesize($path);
    header("content-type:application/octet-stream");
    header("content-disposition:attachment;filename={$imgfile}");
    header("content-length:{$imgsize}");
    readfile($path);

5,download.php
核心下载:
 

复制代码 代码示例:
header("content-type:application/octet-stream");
header("content-disposition:attachment;filename={$imgfile}");
header("content-length:{$imgsize}");
readfile($path);

您可能感兴趣的文章:
php文件上传代码大全(实例分享)
php多文件上传实现代码
php 文件上传实例剖析
php使用ftp下载文件的简单例子
php ftp文件上传函数的简单例子
php图片上传代码一例
php ftp下载文件的代码一例
php自动创建文件夹并上传文件
php 多图片上传的简单例子(图文)
php多文件上传的简单示例分析

[关闭]
~ ~