PHP multiple file upload and download sample code

PHP中文网
Release: 2023-02-28 20:16:01
Original
965 people have browsed it

php moreFile uploadDownload sample code

<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>
Copy after login

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>"; } }
Copy after login

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>";
Copy after login

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
Copy after login

download.php

Core download:

header("content-type:application/octet-stream");
header("content-disposition:attachment;filename={$imgfile}");
header("content-length:{$imgsize}");
readfile($path);
Copy after login
Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!