Heim > Artikel > Backend-Entwicklung > PHP verwendet HTML5, um mehrere Datei-Upload-Beispiele_php-Beispiele zu implementieren
Lassen Sie mich zunächst das Mehrfachattribut einer Datei in HTML5 vorstellen
Definition und Verwendung
Das Mehrfachattribut gibt an, dass das Eingabefeld mehrere Werte auswählen kann. Wenn dieses Attribut verwendet wird, kann das Feld mehrere Werte annehmen.
Beispiel:
<form action="demo_form.asp" method="get"> Select images: <input type="file" name="img" multiple="multiple" /> <input type="submit" /> </form>
Die Eingabedatei im obigen Beispiel kann mehrere Datei-Upload-Felder akzeptieren.
Nachdem wir das Mehrfachattribut einer Datei in HTML5 verstanden haben, beginnen wir mit der Erklärung, wie man HTML5 zum Hochladen mehrerer Dateien verwendet.
Beispielcode:
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-Code:
for($i=0; $i<count($_FILES['upload']['name']); $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 } } }
Vielen Dank fürs Lesen, ich hoffe, es kann Ihnen helfen, vielen Dank für Ihre Unterstützung dieser Website!