PHP 다중 파일 업로드 및 샘플 코드 다운로드
Mar 18, 2017 am 09:33 AM
php
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>"; 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>"; } }
로그인 후 복사
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>";
로그인 후 복사
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); download.php
로그인 후 복사
download.php
핵심 다운로드:
header("content-type:application/octet-stream"); header("content-disposition:attachment;filename={$imgfile}"); header("content-length:{$imgsize}"); readfile($path);
로그인 후 복사
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

인기 기사
Repo : 팀원을 부활시키는 방법
3 몇 주 전
By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 에너지 결정과 그들이하는 일 (노란색 크리스탈)
1 몇 주 전
By 尊渡假赌尊渡假赌尊渡假赌
헬로 키티 아일랜드 어드벤처 : 거대한 씨앗을 얻는 방법
3 몇 주 전
By 尊渡假赌尊渡假赌尊渡假赌
스플릿 소설을이기는 데 얼마나 걸립니까?
3 몇 주 전
By DDD

인기 기사
Repo : 팀원을 부활시키는 방법
3 몇 주 전
By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 에너지 결정과 그들이하는 일 (노란색 크리스탈)
1 몇 주 전
By 尊渡假赌尊渡假赌尊渡假赌
헬로 키티 아일랜드 어드벤처 : 거대한 씨앗을 얻는 방법
3 몇 주 전
By 尊渡假赌尊渡假赌尊渡假赌
스플릿 소설을이기는 데 얼마나 걸립니까?
3 몇 주 전
By DDD

뜨거운 기사 태그

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제
Gmail 이메일의 로그인 입구는 어디에 있나요?
7302
9


자바 튜토리얼
1622
14


Cakephp 튜토리얼
1342
46


라라벨 튜토리얼
1259
25


PHP 튜토리얼
1207
29



Ubuntu 및 Debian용 PHP 8.4 설치 및 업그레이드 가이드

PHP 개발을 위해 Visual Studio Code(VS Code)를 설정하는 방법
