Fgetcsv cannot read Chinese

Source: Internet
Author: User
Fgetcsv cannot read Chinese characters. setlocale (LC_ALL, 'zh _ CN ') has been set. However, when reading csv files, sometimes Chinese characters in the csv files cannot be read. why? It seems to be related to the system !, Is the document encoding the same as the system encoding? if they are different, iconv converts the document encoding to the system encoding ., Fgetcsv has a BUG. Use this function. PHPcode fgetcsv cannot read Chinese
Setlocale (LC_ALL, 'zh _ cn') has been set. However, when reading csv files, you cannot read the Chinese characters in them. why? It seems to be related to the system!

------ Solution --------------------
Is the document encoding the same as the system encoding? if they are different, iconv converts the document encoding to the system encoding.
------ Solution --------------------
Fgetcsv has a BUG.

Use this function.


PHP code
Function _ fgetcsv (& $ handle, $ length = null, $ d = ',', $ e = '"') {$ d = preg_quote ($ d ); $ e = preg_quote ($ e); $ _ line = ""; $ eof = false; while ($ eof! = True) {$ _ line. = (empty ($ length )? Fgets ($ handle): fgets ($ handle, $ length); $ itemcnt = preg_match_all ('/'. $ e. '/', $ _ line, $ dummy); if ($ itemcnt % 2 = 0) $ eof = true;} $ _ csv_line = preg_replace ('/(? : | [])? $/', $ D, trim ($ _ line); $ _ csv_pattern ='/('. $ e.' [^ '. $ e.'] * (? :'. $ E. $ e. '[^ '. $ e. '] *) *'. $ e. '| [^ '. $ d. '] *)'. $ d. '/'; preg_match_all ($ _ csv_pattern, $ _ csv_line, $ _ csv_matches); $ _ csv_data = $ _ csv_matches [1]; for ($ _ csv_ I = 0; $ _ csv_ I <count ($ _ csv_data); $ _ csv_ I ++) {$ _ csv_data [$ _ csv_ I] = preg_replace ('/^ '. $ e. '(. *)'. $ e. '$/S',' $ 1', $ _ csv_data [$ _ csv_ I]); $ _ csv_data [$ _ csv_ I] = str_replace ($ e. $ e, $ e, $ _ csv_data [$ _ csv_ I]);} return empty ($ _ Line )? False: $ _ csv_data ;}
------ Solution --------------------
The bug of fgetcsv is that it cannot read Chinese characters...
------ Solution --------------------
Indeed, even if it is 5.3, the multi-byte support is still not very good.
------ Solution --------------------
It's actually a problem with php5.3.

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.