バックグラウンドに渡す場合はどう書くか? 背景はPHPです"/> バックグラウンドに渡す場合はどう書くか? 背景はPHPです">
<input type="file" name="some-img">
フォームは$_FILES["some-img"]
サーバーに送信されます
<input type="file" name="some-img[]" multiple>
がバックグラウンドに渡される場合はどのように書くのでしょうか?
返信内容:
<input type="file" name="some-img">
$_FILES["some-img"]であるサーバーにフォームを送信します
バックエンドに<input type="file" name="some-img[]" multiple>
背景は 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);変数🎜を出力し、それを受け入れる方法を知るために構造を確認してください🎜