Php uses fgetcsv to read csv files with garbled characters ,. Php uses fgetcsv to read csv files with garbled characters. this example describes how php uses fgetcsv to read csv files with garbled characters. Share it with you for your reference. Php uses fgetcsv to read csv files with garbled characters,
This example describes how php uses fgetcsv to read csv files with garbled characters. Share it with you for your reference. The specific analysis is as follows:
In general, encoding is the most common case of garbled text in php. Here we analyze the cause and solution of garbled text in fgetcsv reading csv files.
Example:
The code is as follows:
Function get_csv_contents ($ file_target ){
$ Handle = fopen ($ file_target, 'r ');
While ($ data = fgetcsv ($ handle, 1000 ,",")){
$ Num = count ($ data );
Echo"
$ Num fields in line $ row:
N ";
$ Row ++;
For ($ c = 0; $ c <$ num; $ c ++ ){
Echo $ data [$ c]."
N ";;
/* Echo getUTFString ($ data [$ c]) */
}
}
Fclose ($ handle );
}
The imported csv file is saved in ansi encoding. for the Chinese operating system environment, it should be gbk encoding. by manually changing the browser character encoding to gbk, garbled characters disappear, at that time, the following adjustments were made.
The code is as follows:
$ Data = eval ('Return '. iconv ('gbk', 'utf-8', var_export ($ data, true )).';');
$ Data is the array to be converted into encoding.
Supplement: linux fgetcsv garbled data reading GBK
When the Linux system uses the default settings, garbled characters will occur when the csv format files of gbk are processed on the Linux server.
Solution:
Use the setlocale function to set environment variables. For example, you can use the following statement before fgetcsv to set the region with gb.
The code is as follows:
Setlocale (LC_ALL, array ('zh _ CN. gbk', 'zh _ CN. gb2312 ', 'zh _ CN. gb18030 '));
Which locale can be used? use the linux command locale-a to check which supported by the system?
I hope this article will help you with PHP programming.
Example: This article describes how php uses fgetcsv to read csv files with garbled characters. Share it with you for your reference. Details...