问题
I have a array like below. I am trying to sort the array alphabetically with asort. but it does not work
Array
(
[0] => BelExpo exhibition center
[1] => Aurora cinema theatre
[2] => Yunost Ice hockey palace
[3] => Rakauski free market
[4] => Grushevka Metro Station
)
$arr = asort($arr1); // output gives 1
thanks in advance
回答1:
OK great I solved the problem.
sort return boolean value. no need to put it in variable. just pass the array in sort. and it will work
sort($arr);
print_r($arr);
来源:https://stackoverflow.com/questions/22819397/asort-not-working-properly-alphabetically