程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 純php多文件上傳

純php多文件上傳

編輯:關於PHP編程

本例就一個php,適合學習,本例可以添加到數據庫的代碼

上傳多個文件時候請一次選擇多個文件,支持doc jpg pdf等

本站裡面比較實用的多文件上傳有很多,這邊推薦一個《jQuery ajax 無刷新多圖片上傳並記錄到數據庫》

純php多文件上傳演示

PHP Code
  1. if(isset($_FILES['files'])){
  2. $res = upload_multiple_file($_FILES['files'],"../upload");
  3. echo $res;
  4. }
  5. function upload_multiple_file($file,$file_dir="../upload") {
  6. $overwrite=0;
  7. $allowed_file_type= array("pdf","ppt","pptx","xls","xlxs","doc","docx","jpg", "jpeg", "png", "gif");
  8. $max_file_size = 2097152;
  9. foreach($_FILES['files']['name'] as $fkey=> $fname){
  10. $ext = pathinfo($fname, PATHINFO_EXTENSION);
  11. if (!in_array($ext, $allowed_file_type)) {
  12. return "unsupported file format";
  13. break;
  14. }
  15. }
  16. foreach($_FILES['files']['tmp_name'] as $key => $tmp_name ){
  17. $file_name = $_FILES['files']['name'][$key];
  18. $file_size =$_FILES['files']['size'][$key];
  19. $file_tmp_name =$_FILES['files']['tmp_name'][$key];
  20. $file_type=$_FILES['files']['type'][$key];
  21. if($file_size >0) {
  22. if($file_size > $max_file_size){
  23. $fsize=$max_file_size/1048576;
  24. return 'File size must be less than '.$fsize.' MB';
  25. break;
  26. }
  27. }
  28. if(is_dir($file_dir)==false){
  29. $status = mkdir("$file_dir", 0700);
  30. if($status < 1){
  31. return "unable to create diractory $file_dir ";
  32. }
  33. }
  34. if(is_dir($file_dir)){
  35. if($overwrite < 1){
  36. move_uploaded_file($file_tmp_name,"$file_dir/".$file_name);
  37. }
  38. }
  39. // $file_upload_query="INSERT into user_uploads (`u_id`,`file_name`,`file_type`) VALUES('$user_id','$file_name','$file_size','$file_type'); ";
  40. //mysql_query($file_upload_query);
  41. }
  42. return "Success";
  43. }
  44. ?>

  45. 原文地址:http://www.freejs.net/article_biaodan_103.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved