I noticed that my function mentioned earlier is very misleading - somebody please delete that note!
This is how you sort:
<?php
setlocale (LC_ALL, 'czech');
$array = array("a", "č", "c");
usort ($array, 'strcoll');
print_r($array);
?>
I noticed that my function mentioned earlier is very misleading - somebody please delete that note!
This is how you sort:
<?php
setlocale (LC_ALL, 'czech');
$array = array("a", "č", "c");
usort ($array, 'strcoll');
print_r($array);
?>