首頁 >後端開發 >php教程 >php使用html5實作多文件上傳的方法

php使用html5實作多文件上傳的方法

墨辰丷
墨辰丷原創
2018-05-31 11:31:571677瀏覽

在html還沒出來之前,要實作php多檔案上傳比較麻煩,需要在form表單裡面新增多個input file網域。 html5發佈以後,我們可以使用input file的html5屬性multiple來實現多文件上傳,需要的朋友可以參考下

首先向大家介紹一下html5中file的multiple屬性

#定義和用法

multiple 屬性規定輸入欄位可選擇多個值。如果使用該屬性,則欄位可接受多個值。

實例:

<form action="demo_form.asp" method="get">
 Select images: <input type="file" name="img" multiple="multiple" />
 <input type="submit" />
</form>

上面實例中的input file 可接受多個檔案上傳欄位。

了解了html5中file的multiple屬性,下面我們開始講解使用html5實作多檔案上傳。

實例程式碼:

html:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<form action="my_parser.php" method="post" enctype="multipart/form-data">
 <p><input name="upload[]" type="file" multiple="multiple" /></p>
 <input type="submit" value="Upload all files">
</form>
</body>
</html>

php程式碼:

#
for($i=0; $i<count($_FILES[&#39;upload&#39;][&#39;name&#39;]); $i++) {
 //Get the temp file path
 $tmpFilePath = $_FILES[&#39;upload&#39;][&#39;tmp_name&#39;][$i];

 //Make sure we have a filepath
 if ($tmpFilePath != ""){
  //Setup our new file path
  $newFilePath = "./uploadFiles/" . $_FILES[&#39;upload&#39;][&#39;name&#39;][$i];

  //Upload the file into the temp dir
  if(move_uploaded_file($tmpFilePath, $newFilePath)) {

   //Handle other code here

  }
 }
}

總結:以上就是本文的全部內容,希望對大家的學習有幫助。同時也希望大家多多支援PHP中文網。

相關推薦:

PHP長連接使用案例分析

php使用redis長連接有哪些步驟

php套用容器化與部署使用詳解

#

以上是php使用html5實作多文件上傳的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn