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

不言
Release: 2023-03-01 06:28:02
Original
2444 people have browsed it
<input type="file" name="some-img">
Copy after login
Copy after login

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

How to write it if

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

is passed to the background?

The backend is PHP

Reply content:

<input type="file" name="some-img">
Copy after login
Copy after login

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

How to write it if

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

is sent to the backend?

The background is PHP

HTML:

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

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

    }
  }
}
Copy after login

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!