PHP 파일 업로드 시 중국어 문자 왜곡에 대한 해결 방법: 먼저 해당 PHP 파일을 연 다음 "iconv("UTF-8", "gbk",$name)" 메서드를 사용하여 파일 이름을 강제로 트랜스코딩하고 UTF8을 다음으로 변환합니다. 그냥 GBK.
추천: "PHP 비디오 튜토리얼"
PHP 업로드 파일 및 잘못된 중국어 이름 정보
프런트 엔드 HTML 페이지에서 형식은 다음과 같습니다
Upload.html
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <form action="upload.php" method="post" enctype="multipart/form-data"> <input type="hidden" name="MAX_FILE_SIZE" value="2621114"> <input type="file" required name="upload_file"> <input type="submit" value="提交"> </form> </body> </html>
주의
enc type= "multipart/form-data"를 작성해야 합니다. 이는 업로드 중인 내용을 브라우저에 알려줍니다
설정 파일 최대값
백엔드 upload.php
<?php if (is_uploaded_file($_FILES['upload_file']['tmp_name'])){ $upfile = $_FILES['upload_file']; //print_r($upfile); $name = $upfile['name'];//获取文件名 $type = $upfile['type'];//文件类型 $size = $upfile['size'];//文件大小 $tmp_name = $upfile['tmp_name'];//服务器存储的临时名称 $error = $upfile['error'];//错误信息 switch ($type){ case 'image/png': $ok=1; break; case 'image/jpg': $ok=1; break; case 'image/jif': $ok=1; break; case 'image/jpeg': $ok=1; break; } if ($ok && $error == 0){ move_uploaded_file($tmp_name,'./upload/'.iconv("UTF-8", "gbk",$name)); echo '文件上传成功'; }else{ echo '文件上传失败'; } }
업로드할 때 PHP는 파일에 대한 정보 배열을 수신하며, 이 정보는 슈퍼 전역 배열 $_FILES에서 찾을 수 있습니다.
예: 양식의 파일 입력 상자 이름이 upload_file이면 파일에 대한 모든 정보가 $_FILES['upload_file'] 배열에 포함됩니다.
is_uploaded_file - HTTP POST를 통해 파일이 업로드되었는지 확인
move_uploaded_file - 업로드된 파일을 새 위치로 이동
bool move_uploaded_file ( string $filename , string $destination )
중국어 파일 이름이 나타나면 파일 이름을 강제로 트랜스코딩합니다. iconv("UTF-8 ", "gbk ",$name), 문자가 깨지지 않도록 UTF8을 gbk로 변환하세요
위 내용은 PHP 파일 업로드 시 중국어 문자 깨짐 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!