Php uses fgetcsv to read csv file garbled solution

Source: Internet
Author: User
Most of the garbled characters in php are encoding problems. here we have analyzed for a long time the cause and solution of the following fgetcsv file garbled characters. The example code is as follows :? Phpfunctionget_csv _... most of the garbled characters encountered in php are encoding problems. here we have analyzed the cause and solution of the following fgetcsv file garbled characters. The example code is as follows:

  $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 the 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 what the system supports.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.