php上傳檔名亂碼的解決辦法:首先開啓「Upload.html」檔案;然後新增語句「enctype="multipart/form-data"」;接着開啓「upload.php」檔案;最後對檔名進行強制轉碼即可。
推薦:《》
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"一定要寫,這是告訴瀏覽器你在上傳什麼東西
<input type="hidden" name="MAX_FILE_SIZE" value="2621114"> 前端設定檔案大最大值
後端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中文網其它相關文章!