php多檔案上傳下載範例程式碼

PHP中文网
發布: 2023-02-28 20:16:01
原創
965 人瀏覽過

php多檔案上傳下載範例程式碼 

<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>
登入後複製

index_uploads.php

<?php
    echo "<pre class="brush:php;toolbar:false">";
    print_r($_FILES);
    echo "
"; $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(&#39;succeed!&#39;);window.location.href=&#39;listdir.php&#39;;</script>"; } else { echo "<script>alert(&#39;fail!&#39;);window.location.href=&#39;index_uploads.php&#39;;</script>"; } }
登入後複製

index_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.&#39;/&#39;.$file;
            if ($file != &#39;.&#39; && $file != &#39;..&#39;){
                if (is_dir($path)) {
                    listdir($path);
                } else {
                    echo "<tr>";
                    echo "<td><img src=&#39;$path&#39;></td>";
                    echo "<td><a href=&#39;download.php?imgfile=$file&#39;>Download</a></td>";
                    echo "</tr>";
                }
            }
        }
    } 
    echo "<h2>图片下载|<a href=&#39;index_uploads.php&#39;>图片上传</a></h2>";
    echo "<table width=&#39;700px&#39; border=&#39;1px&#39;>";
    listdir($dirname);
    echo "</table>";
登入後複製

uploads. 🎜>

listdir.php
<?php
    $imgfile = $_GET[&#39;imgfile&#39;];
    $path = &#39;./uploads/files/&#39;.$imgfile;
    $imgsize = filesize($path);
    header("content-type:application/octet-stream");
    header("content-disposition:attachment;filename={$imgfile}");
    header("content-length:{$imgsize}");
    readfile($path);
download.php
登入後複製

download.php

核心下載:
header("content-type:application/octet-stream");
header("content-disposition:attachment;filename={$imgfile}");
header("content-length:{$imgsize}");
readfile($path);
登入後複製
相關標籤:
php
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!