이 문서에서는 HTML5의 다중 속성을 사용하여 PHP에서 다중 파일 업로드 및 정보 구문 분석을 구현하는 방법을 계속 소개합니다.
그렇다면 PHP에서 여러 파일을 업로드하는 간단한 방법은 무엇입니까? ], PHP에서 여러 파일을 업로드하는 간단한 방법을 간략하게 소개했습니다. 필요한 친구들이 참고할 수 있습니다.
먼저 HTML 양식 코드는 다음과 같습니다.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <form action="getFile.php" method="post" enctype="multipart/form-data"> 选择文件进行上传: <input type="file" name="file[]" multiple=""><br> <input type="submit" value="上传"> </form> </body> </html>
var_dump($_FILES);
그래서 업로드된 여러 파일의 정보를 분석하려면 먼저 업로드된 정보를 모아야 합니다.
그러면 완전한 getFile.php 코드는 다음과 같습니다.<?php /** * 组装多文件上传信息 */ $files = []; function getFile() { $i = 0; foreach ($_FILES as $file) { if (is_string($file['name'])) { $files['$i'] = $file; $i++; } elseif (is_array($file['name'])) { foreach ($file['name'] as $k => $v) { $files[$i]['name'] = $file['name'][$k]; $files[$i]['type'] = $file['type'][$k]; $files[$i]['tmp_name'] = $file['tmp_name'][$k]; $files[$i]['error'] = $file['error'][$k]; $files[$i]['size'] = $file['size'][$k]; $i++; } } } return $files; } /** * 文件上传 * @param $fileInfo * @param string $upload * @param array $imagesExt * @return string */ function upload_file($fileInfo, $upload = "./upload", $imagesExt = ['gif', 'png', 'jpg']) { $res = []; if ($fileInfo['error'] === 0) { $ext = strtolower(pathinfo($fileInfo['name'], PATHINFO_EXTENSION)); if (!in_array($ext, $imagesExt)) { $res['mes'] = "文件非法类型"; } if (!is_dir($upload)) { mkdir($upload, 0777, true); } if ($res) { return $res; } $fileName = md5(uniqid(microtime(true), true)) . "." . $ext; $destName = $upload . "/" . $fileName; if (!move_uploaded_file($fileInfo['tmp_name'], $destName)) { $res['mes'] = "文件上传失败!"; } $res['mes'] = $fileInfo['name'] . "文件上传成功!"; $res['dest'] = $destName; return $res; } else { switch ($fileInfo['error']) { case 1: $res['mes'] = '上传的文件超过了 php.ini 中 upload_max_filesize 选项限制的值'; break; case 2: $res['mes'] = '上传文件的大小超过了 HTML 表单中 MAX_FILE_SIZE 选项指定的值'; break; case 3: $res['mes'] = '文件只有部分被上传'; break; case 4: $res['mes'] = '没有文件被上传'; break; case 6: $res['mes'] = '找不到临时文件夹'; break; case 7: $res['mes'] = '文件写入失败'; break; } return $res; } } $files = getFile(); foreach ($files as $fileInfo) { $res = upload_file($fileInfo); echo $res['mes']; var_dump($res['dest']); }
위 코드에서는 먼저 foreach 루프 판단문을 사용하여 업로드된 다차원 배열 정보를 판단하고
Reorganize를 생성합니다. upload_file 메소드를 multiple로 각 파일의 업로드 정보를 파싱합니다. 여기서 upload_file 방식은 본 글 [PHP 파일 업로드 방식 및 정보 분석에 대한 자세한 설명]에 자세히 소개되어 있으니 참고하시면 됩니다. 위는 PHP가 다중 파일 업로드 및 정보 분석을 구현하는 구체적인 방법입니다.
PHP에 대해 더 자세히 알고 싶다면 PHP 중국어 웹사이트의 PHP 비디오 튜토리얼을 따라가세요!
위 내용은 PHP에서 다중 속성을 사용하여 여러 파일을 업로드하고 정보를 구문 분석하는 방법은 무엇입니까? (사진 + 동영상)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!