Heim > Artikel > Backend-Entwicklung > Wie lade ich mehrere Eingaben[type='file'] hoch?
<input type="file" name="some-img">
Das Formular wird an den Server gesendet, der $_FILES["some-img"]
Dann wenn
ist<input type="file" name="some-img[]" multiple>
Wie schreibe ich beim Hochladen in den Hintergrund?
Der Hintergrund ist PHP
<input type="file" name="some-img">
Das Formular wird an den Server gesendet, der $_FILES["some-img"] ist
Was wäre, wenn
<input type="file" name="some-img[]" multiple>
Wie schreibe ich es, wenn es in den Hintergrund gesendet wird?
Der Hintergrund ist PHP
HTML:
<input name="upload[]" type="file" multiple="multiple" />
PHP:
// Count # of uploaded files in array $total = count($_FILES['upload']['name']); // Loop through each file for($i=0; $i<$total; $i++) { //Get the temp file path $tmpFilePath = $_FILES['upload']['tmp_name'][$i]; //Make sure we have a filepath if ($tmpFilePath != ""){ //Setup our new file path $newFilePath = "./uploadFiles/" . $_FILES['upload']['name'][$i]; //Upload the file into the temp dir if(move_uploaded_file($tmpFilePath, $newFilePath)) { //Handle other code here } } }
var_dump($_FLIE);
Setzen Sie VariablenDrucken Sie es aus, um die Struktur zu sehen und Sie werden wissen, wie Sie es akzeptieren