Which MySQL collation exactly matches PHP's string comparison?
Here is a MySQL query:
SELECT last_name FROM users ORDER BY last_name
We get all that data into PHP and then run:
$prior = NULL;
do {
$current = array_shift($results);
assert($current >= $prior);
$prior = $current;
} while ($current !== NULL);
Currently this assertion fails for certain inputs. Is it possible to add a COLLATE clause to the MySQL query above to absolutely guarantee that PHP assertion?
Stuff I tried:
ORDER BY email COLLATE utf8_bin
resulted in COLLATION 'utf8_bin' is not valid for CHARACTER SET 'latin1'
Others notes:
latin1
echo ('a' == 'A') ? 'a==A ' : 'a <> A ';
echo ('a' == 'á') ? 'a==á ' : 'a <> á ';
两者都返回<>
,所以我推断PHP的行为就像latin1_bin
(或者你拥有的任何charset的_bin
)。
上一篇: 做一个utf8