


Many friends may encounter some problems. When uploading files, if it is in English, the original text name will not be a problem. If it is in Chinese, garbled characters may appear. Today I will summarize for you the garbled PHP file uploads. Let’s look at the reasons and solutions for garbled Chinese file names.
I have installed XAMPP under windows in the past few days, and I am going to initially learn PHP-related content. I have been exposed to php uploading files in the past few days, but a frustrating problem has arisen. I am going to upload an excel file, but if the file name is a Chinese name, an error will be reported.
I was very depressed after going back and forth. Then I thought about it carefully and it should be a file encoding problem. The php file I wrote uses UTF-8 encoding. If I guessed correctly, APACHE should use GBK for processing (of course I can’t be sure now) , I hope experts can give me some advice). After thinking about this problem, I went to search for relevant tutorials and simply found the iconv function.
Function prototype: string iconv (string in_charset, string out_charset, string str)
Usage example: $content = iconv("GBK", "UTF-8", $content);
The purpose of this example is to convert $content from GBK to UTF-8 encoding.
Key code for garbled code problem:
$name=iconv("UTF-8","gb2312", $name) ;
move_uploaded_file($tmpname, $this->final_file_path);
$name=iconv("gb2312","UTF-8", $name);
In addition to solving the problem of garbled Chinese characters in uploaded files, we can also rename the uploaded files.
Example
$sFileName = "sda.php";
$sOriginalFileName = $sFileName;
$sExtension = s str($sFileName, (strrpos($sFileName, '.') + 1));//Find the extension name
$sExtension = strtolower($sExtension);
$sFileName = date("YmdHis").rand(100, 200).".".$sExtension; //This is our new file name. It will be all numbers and there will be no garbled characters.
Here are some additions:
Solution to garbled Chinese file name uploaded by php
$filepath="upload/";
$name=$filepath.$ _FILES["upfile"]["name"];
while(file_exists($name)){
$temp=explode(".",$name);//Split string
$name =$temp[0]."0".".".$temp[1];//Add 0 after the main file name
}
//iconv() function is the key
if(move_uploaded_file($_FILES[ "upfile"]["tmp_name"],iconv("UTF-8","gb2312",$name))){//Processing...}
My PHP encoding is UTF-8, the reason may be because the operating system is GBK!
Note: My server is windows xp, apache, and the xp character set is estimated to be gbk. Because my PHP code is saved in UTF-8 format, garbled characters will appear when naming the file name, so you can use the iconv() function to convert the original UTF-8 format file name to gbk format.
php utf8 encoding solution to garbled Chinese file names when uploading
I think many friends will encounter such a problem when developing the upload function of UTF8-encoded PHP. When uploading a file with a Chinese file name, the file name will become garbled. We can use the iconv function to correct the file name. Recoding solved the problem.
header("Content-Type: text/html; charset=utf-8");
$submit = $_POST['submit'];
if(isset($submit) && trim($submit) != ''){
$file = $_FILES['file'];
if(isset($file['tmp_name'])){
$name = iconv('utf-8','gb2312',$file['name'] ); //Use the Iconv function to re-encode the file name
if(move_uploaded_file($file['tmp_name'],$name)){
echo 'File uploaded successfully!';
echo 'Picture Message: ';
print_r($file);
}
}
}
?>

php导入csv乱码问题的解决办法:1、构造一个解析函数“function tb_str_getcsv($string, $delimiter=',', $enclosure='"') {...}”;2、读取文件到变量;3、通过“substr($s,2)”去掉BOM头即可。

cmd php乱码的解决办法:1、在windows平台的cmd或shellpower中,执行php脚本并检查是否乱码;2、通过在php脚本里执行“exec("CHCP 65001");”命令去修改当前页码字符集即可。

php+fread()乱码是因为输出页面的编码和被读文件的编码不一致,其解决办法:1、打开相应的PHP文件;2、通过fread函数读取文件;3、通过“iconv('gbk', 'utf-8', $data)”方法将读取的内容转码即可。

linux命令行显示乱码的解决办法:1、通过“echo $LANG”命令查看当前支持的语言;2、使用“LANG=en_US”命令修改语言为英语语系即可解决乱码问题。

php写入数据库中文乱码的解决办法:1、创建数据库并设置“utf8_general_ci”编码;2、用PHP读写数据库,然后设置“mysql_query("set names 'utf8'");”即可。

wordpress后台乱码的解决办法:1、在wordpress的“wp-admin”文件夹下找到“admin.header.php”文件;2、将“charset”属性值设置为“UTF-8”格式即可恢复正常。

mysql注释乱码问题的解决办法:1、通过“show variables like '%colla%';show variables like '%char%';”命令查看数据库与服务端的字符集设置;2、通过“set character_set_client=utf8;”设置结果集为utf8即可。

php dompdf中文乱码的解决办法:1、打开前端文件;2、通过设置“@font-face {font-family:ttt;src: url(/static/font/simkai.ttf)}”引用中文字体;3、删除“dompdf_font_family_cache.php”即可。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Chinese version
Chinese version, very easy to use

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
