知识屋:更实用的电脑技术知识网站
所在位置:首页 > 编程技术 > PHP编程

php jquery 多文件上传

发布时间:2015-05-27 19:23:21作者:知识屋

php jquery 多文件上传

php jquery 多文件上传演示

XML/HTML Code
  1. Upload
  2. <script>
  3. $(document).ready(function()
  4. {
  5. var settings = {
  6. url: "upload.php",
  7. method: "POST",
  8. allowedTypes:"jpg,png,gif,doc,pdf,zip",
  9. fileName: "myfile",
  10. multiple: true,
  11. onSuccess:function(files,data,xhr)
  12. {
  13. $("#status").html("Upload is success");
  14. },
  15. onError: function(files,status,errMsg)
  16. {
  17. $("#status").html("Upload is Failed");
  18. }
  19. }
  20. $("#mulitplefileuploader").uploadFile(settings);
  21. });
  22. </script>

    upload.php

    PHP Code
    1. //If directory doesnot exists create it.
    2. $output_dir = "../upload";
    3. if(isset($_FILES["myfile"]))
    4. {
    5. $ret = array();
    6. $error =$_FILES["myfile"]["error"];
    7. {
    8. if(!is_array($_FILES["myfile"]['name'])) //single file
    9. {
    10. $fileName = $_FILES["myfile"]["name"];
    11. move_uploaded_file($_FILES["myfile"]["tmp_name"],$output_dir. $_FILES["myfile"]["name"]);
    12. //echo "
      Error: ".$_FILES["myfile"]["error"];
    13. $ret[$fileName]= $output_dir.$fileName;
    14. }
    15. else
    16. {
    17. $fileCount = count($_FILES["myfile"]['name']);
    18. for($i=0; $i < $fileCount; $i++)
    19. {
    20. $fileName = $_FILES["myfile"]["name"][$i];
    21. $ret[$fileName]= $output_dir.$fileName;
    22. move_uploaded_file($_FILES["myfile"]["tmp_name"][$i],$output_dir.$fileName );
    23. }
    24. }
    25. }
    26. echo json_encode($ret);
    27. }
    28. ?>


      原文地址:http://www.freejs.net/article_biaodan_116.html
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜