이 글에서는 주로 PHP에서 여러 파일 업로드를 구현하는 방법을 공유합니다. 이전에는 여러 이미지를 선택하는 형식으로 파일 형식 입력을 구현할 때 최선이 아닐 수도 있는 방법을 찾았지만 개인적으로는 가능합니다. IE7 이상과 Chrome 브라우저를 테스트하고 지원하므로 모든 사람에게 도움이 되기를 바랍니다.
일반적인 여러 파일을 사용하여 양식에서 여러 속성을 선택하세요
<input type="file" id="image" class="file image hidden" name="image[]" multiple="true">
그런 다음 AjaxFileUpload 또는 다른 방법을 사용하여 제출하세요
해당 명명된 파일$file[‘image']
을 인쇄용 json으로 변환
일반 형식
{"name":"7332.png","type":"image\/png","tmp_name":"\/tmp\/phplqppvR","error":0,"size":659}
그런데 결과는
{"name":["7656.png","7718.png"],"type":["image/png","image/png"],"tmp_name":["/tmp/phpDzSovj","/tmp/phpP8kWmT"],"error":[0,0],"size":[357,662]}
모든 속성이 배열로 변경되어 순서대로 정렬됩니다
이때, 다음 코드를 사용하여 이미지를 저장할 수 있습니다
if (!isset($_FILES[$field])) { return new JsonResponse(array('errorCode'=>1, 'message'=>'请上传文件')); } //重新命名$_FILE 存储多个文件上传 $arrayFile = array(); foreach($_FILES[$field] as $key => $value){ $i = 0; if(is_array($value)) { foreach ($value as $v) { $i++; //重命名后重新放入超全局变量_FILE 保证键名唯一 也可直接上传 $name = $field . '_split_' . $i; $_FILES[$name][$key] = $v; } } } //是否上传多文件 if($i > 0){ for($j = 1; $j <= $i; $j++){ array_push($arrayFile, $field . '_split_' . $j); } }else{ array_push($arrayFile, $field); } //遍历file多个文件 上传 foreach($arrayFile as $file){ if (isset($_FILES[$file]) && $_FILES[$file]['name']) { //自定义上传方法 具体内容略 $data = $this->uploadFile($file, $path, uniqid()); if ( isset($data) && !empty($data) ) { if(!isset($data['errors'])){ //将上传结果存储于$result中 多图片地址使用逗号拼接 if(isset($result)){ $result = array('errorCode'=>0, 'message'=>$result['message'] . ',' . reset($data)); }else{ $result = array('errorCode'=>0, 'message'=>reset($data)); } }else{ //以下为返回错误信息 if(is_array(reset($data))){ $message = reset($data)[0]; }else{ $message = reset($data); } $result = array('errorCode' => 1, 'message' => $message); } } else { $result = array('errorCode'=>1, 'message'=>'上传失败'); break; } } else { $result = array('errorCode'=>1, 'message'=>'请上传文件'); break; } } //返回上传结果 return $result;
관련 권장사항:
구현 PHP 웹 페이지의 일반적인 파일 업로드 기능 Method
PHP 파일 업로드를 위한 Alibaba Cloud OSS 사용
PHP 단일 파일 및 다중 파일 업로드 예제_php 예제
위 내용은 PHP에서 다중 파일 업로드를 구현하는 방법의 분석 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!