PHP批量上传图片的具体实现方式

大家可以通过下面这一段代码,来具体了解PHP批量上传图片的具体方式。我们在学习PHP的时候,肯定是要从实际操作中慢慢积累经验,以巩固我们所学到的知识,逐渐的加强我们的编程水平。

 

  • PHP保护文件系统的具体代码分享
  • PHP保护数据库的具体代码示例
  • 探讨主要的PHP应用领域
  • 基于PHP的AJAX技术的具体应用解析
  • 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批量上传图片的全部编程,希望对有需要的同学有所帮助。

你可能感兴趣的:(编程,PHP,Ajax,数据库,upload,File)