PHP 다중 파일 업로드 및 샘플 코드 다운로드

PHP中文网
풀어 주다: 2023-02-28 20:16:01
원래의
964명이 탐색했습니다.

php multi파일 업로드샘플 코드 다운로드

<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>"; } }
로그인 후 복사

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>";
로그인 후 복사

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 학습자의 빠른 성장을 도와주세요!