我想按字母排序数组
当我使用asort()进行排序时,我得到的结果首先是大写的名字,之后是所有小写的名字
喜欢:
Avi
Beni
..
..
avi
beni
如果我想要:
Avi
avi
Beni
beni
..
..
我该怎么做?
答案 0 :(得分:4)
答案 1 :(得分:2)
答案 2 :(得分:2)
到目前为止,提出的解决方案并不正确, natcasesort 和 usort($ arr,'strcasecmp')解决方案都失败了一些启动数组配置。
让我们做一些测试,找到解决方案。
<?php
$array1 = $array2 = $array3 = $array4 = $array5 = array('IMG1.png', 'img12.png', 'img10.png', 'img2.png', 'img1.png', 'IMG2.png');
// This result is the one we nee to avoid
sort($array1);
echo "Standard sorting\n";
print_r($array1);
// img2.png and IMG2.png are not in the desired order
// note also the array index order in the result array
natcasesort($array2);
echo "\nNatural order sorting (case-insensitive)\n";
print_r($array2);
// img1.png and IMG1.png are not in the desired order
usort($array3, 'strcasecmp');
echo "\nNatural order sorting (usort-strcasecmp)\n";
print_r($array3);
// Required function using the standard sort algorithm
function mySort($a,$b) {
if (strtolower($a)== strtolower($b))
return strcmp($a,$b);
return strcasecmp($a,$b);
}
usort($array4, 'mySort');
echo "\nStandard order sorting (usort-userdefined)\n";
print_r($array4);
// Required function using the natural sort algorithm
function myNatSort($a,$b) {
if (strtolower($a)== strtolower($b))
return strnatcmp($a,$b);
return strnatcasecmp($a,$b);
}
usort($array5, 'myNatSort');
echo "\nNatural order sorting (usort-userdefined)\n";
print_r($array5);
&GT;