php jquery 多文件上传_PHP教程
Lepaskan: 2016-07-13 17:18:48
asal
1119 orang telah melayarinya
php jquery 多文件上传
演示
XML/HTML Code
-
Upload
-
-
-
<script> <li class="alt"> <li>$(document).ready(function() <li class="alt">{ <li> <li class="alt">var settings = { <li> url: "upload.php", <li class="alt"> method: "POST", <li> allowedTypes:"jpg,png,gif,doc,pdf,zip", <li class="alt"> fileName: "myfile", <li> multiple: true, <li class="alt"> onSuccess:function(files,data,xhr) <li> { <li class="alt"> $("#status").html("<font color='green'>Upload is success"); <li> <li class="alt"> }, <li> onError: function(files,status,errMsg) <li class="alt"> { <li> $("#status").html("<font color='red'>Upload is Failed"); <li class="alt"> } <li>} <li class="alt">$("#mulitplefileuploader").uploadFile(settings); <li> <li class="alt">}); <li></script>
upload.php
PHP Code
-
//If directory doesnot exists create it.
- $output_dir = "../upload";
-
- if(isset($_FILES["myfile"]))
- {
- $ret = array();
-
- $error =$_FILES["myfile"]["error"];
- {
-
- if(!is_array($_FILES["myfile"]['name'])) //single file
- {
- $fileName = $_FILES["myfile"]["name"];
- move_uploaded_file($_FILES["myfile"]["tmp_name"],$output_dir. $_FILES["myfile"]["name"]);
- //echo "
Error: ".$_FILES["myfile"]["error"];
-
- $ret[$fileName]= $output_dir.$fileName;
- }
- else
- {
- $fileCount = count($_FILES["myfile"]['name']);
- for($i=0; $i {
- $fileName = $_FILES["myfile"]["name"][$i];
- $ret[$fileName]= $output_dir.$fileName;
- move_uploaded_file($_FILES["myfile"]["tmp_name"][$i],$output_dir.$fileName );
- }
-
- }
- }
- echo json_encode($ret);
-
- }
-
- ?>
原文地址:http://www.freejs.net/article_biaodan_116.html
http://www.bkjia.com/PHPjc/621610.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/621610.htmlTechArticlephp jquery 多文件上传 演示 XML/HTML Code Upload script $(document).ready(function() { var settings = { url: "upload.php", method: "POST", allowedTypes:"jpg,png,gif,doc,pdf,z...
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Artikel terbaru oleh pengarang
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31
Topik-topik yang berkaitan
Lagi>