Home  >  Article  >  Backend Development  >  How to upload input[type="file"] multiple?

How to upload input[type="file"] multiple?

不言
不言Original
2018-05-28 10:16:562439browse
<input type="file" name="some-img">

The form is submitted to the server, which is $_FILES["some-img"]

How to write it if

<input type="file" name="some-img[]" multiple>

is passed to the background?

The backend is PHP

Reply content:

<input type="file" name="some-img">

The form is submitted to the server, which is $_FILES["some-img"]

How to write it if

<input type="file" name="some-img[]" multiple>

is sent to the backend?

The background is PHP

HTML:

<input name="upload[]" type="file" multiple="multiple" />

PHP:

// Count # of uploaded files in array
$total = count($_FILES[&#39;upload&#39;][&#39;name&#39;]);

// Loop through each file
for($i=0; $i<$total; $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

    }
  }
}

var_dump($_FLIE);
Print the variable and see the structure to know how to accept it

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn