PHP and MySQL in UTF8 Chinese sort sample code,
1. Need to sort in the PHP array in Chinese, but generally use UTF8 format files, directly with the asort sort not. You can use GBK and gb2312. This is related to the encoding of several formats. The code of GBK and gb2312 itself is sorted by pinyin.
The code is as follows
Function Utf8_array_asort (& $array) {if (!isset ($array) | |!is_array ($array)) {return false;} foreach ($array as $k = + $v) {$array [$k] = iconv (' UTF-8 ', ' Gbk//ignore ', $v);} Asort ($array); foreach ($array as $k = = $v) {$array [$k] = iconv (' GBK ', ' Utf-8//ignore ', $v);} return true;}
2. In MySQL, we often sort a field query, but in Chinese sorting and search, the Chinese character sorting and search results are often wrong. This situation is present in many versions of MySQL (www.jb51.net).
If this problem is not resolved, then MySQL will not be able to actually handle Chinese. This problem occurs because MySQL is case insensitive when querying strings, and when Yi MySQL is generally used as the default character set for the ISO-8859 character set, this behavior is caused by the Chinese encoding character-case conversion during comparison.
Workaround:
For fields that contain Chinese, add the "binary" attribute to the binary comparison, for example, "name char (10)" to "name Char (TEN) binary".
If you compile MySQL using the source code, you can compile MySQL using the--WITH--CHARSET=GBK parameter, so that MySQL will directly support the Chinese search and sort (default is Latin1). You can also use EXTRA-CHARSETS=GB2312,GBK to add multiple character sets.
If you do not want to modify the table structure or recompile MySQL, you can also use the CONVERT function in the order by section of the query statement. Like what
The code is as follows
Copy the Code code as follows:
SELECT * FROM MyTable ORDER by CONVERT (Chinesecolumnname USING GBK);
http://www.bkjia.com/PHPjc/898279.html www.bkjia.com true http://www.bkjia.com/PHPjc/898279.html techarticle PHP and MySQL in the UTF8 Chinese sample code, 1. Need to sort in the PHP array in Chinese, but generally use the UTF8 format of the file, directly with the asort sort not. You can use GBK and gb2312. ...