一个简单的php批量上传程序

来源:互联网 发布:德州金蝶软件 编辑:程序博客网 时间:2024/06/06 09:38
<html>
 <head>
 <title>
 upload picture more once
 </title>
 </head>
 <body>
 <form action="" method="post" enctype="multipart/form-data">
 <p>Pictures:<br />
 <input type="file" name="pictures[]" /><br />
 <input type="file" name="pictures[]" /><br />
 <input type="file" name="pictures[]" /><br />
 <input type="submit" name="upload" value="上传" />   </p>
   </form>
   </body>
   </html>
 <?php if($_POST['upload'])
 { $dest_folder   =  "picture/";
  if(!file_exists($dest_folder))
   mkdir($dest_folder);   }
  print_r($_FILES["pictures"]["error"]);
     foreach ($_FILES["pictures"]["error"] as $key => $error)
      {if ($error == UPLOAD_ERR_OK)
       { $tmp_name = $_FILES["pictures"]["tmp_name"][$key];
         $name    = $_FILES["pictures"]["name"][$key];
 $uploadfile = $dest_folder.$name;
 move_uploaded_file($tmp_name, $uploadfile);
 }
       }
      }
 ?>