>  기사  >  백엔드 개발  >  input[type='file']을 여러 개 업로드하는 방법은 무엇입니까?

input[type='file']을 여러 개 업로드하는 방법은 무엇입니까?

不言
不言원래의
2018-05-28 10:16:562496검색
<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[&#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

    }
  }
}

var_dump($_FLIE);
변수를 출력하여 구조를 확인하고 어떻게 받아들이는지 알 수 있습니다

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.