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

PHP批量上傳圖片的具體實現方式

編輯:關於PHP編程

大家可以通過下面這一段代碼,來具體了解PHP批量上傳圖片的具體方式。我們在學習PHP批量上傳圖片的代碼如下:

  1. <html> 
  2. <head><title>upload picture more once</title></head> 
  3. <body> 
  4.  <form action="" method="post" enctype="multipart/form-data"> 
  5.   <p>Pictures:<br /> 
  6.   <input type="file" name="pictures[]" /><br /> 
  7.   <input type="file" name="pictures[]" /><br /> 
  8.   <input type="file" name="pictures[]" /><br /> 
  9.   <input type="submit" name="upload" value="Send" /> 
  10.   </p> 
  11.  </form> 
  12. </body> 
  13. </html> 
  14.  
  15. <?php 
  16. if($_POST['upload']=='Send'){  
  17.     $dest_folder   =  "picture/";  
  18.  if(!file_exists($dest_folder)){  
  19.         mkdir($dest_folder);  
  20.  }  
  21.  foreach ($_FILES["pictures"]["error"] as $key => $error) {  
  22.      if ($error == UPLOAD_ERR_OK) {  
  23.          $tmp_name = $_FILES["pictures"]["tmp_name"][$key];  
  24.          $name    = $_FILES["pictures"]["name"][$key];  
  25.       $uploadfile = $dest_folder.$name;  
  26.          move_uploaded_file($tmp_name, $uploadfile);  
  27.      }  
  28.  }  
  29. }  
  30. ?>   

以上代碼就是PHP批量上傳圖片的全部編程,希望對有需要的同學有所幫助。


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