解決php上傳中文出現亂碼的問題的方法:首先在對應的檔案中加入【enctype="multipart/form-data"】;然後透過【iconv("UTF-8", "gbk" ,$name)】對檔案名稱強制轉碼即可。
推薦:《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>
注意
enctype="multipart/form-data"一定要寫,這是告訴瀏覽器你在上傳什麼東西
02ad864ff822bc5116f29be2aa40bace 前端設定檔大最大值
#後
#後端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中文網其他相關文章!