<input type="file" name="some-img">
양식이 $_FILES["some-img"]
인 서버에 제출됩니다.
<input type="file" name="some-img[]" multiple>
백그라운드 업로드시 어떻게 작성하나요?
배경은 PHP입니다
<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);
변수를 출력하여 구조를 확인하고 어떻게 받아들이는지 알 수 있습니다