strcoll < PHP
The strcoll function compares two strings. Case sensitive. Unlike strcomp, not binary safe
$text1 = "Hello world!";
$text2 = "Hello World!";
echo strcoll($text1, $text2);
// 32
The strcoll function compares two strings. Case sensitive. Unlike strcomp, not binary safe
$text1 = "Hello world!";
$text2 = "Hello World!";
echo strcoll($text1, $text2);
// 32