(PHP 4, PHP 5, PHP 7)
asort — ���������������������ϵ
&$array
[, int $sort_flags
= SORT_REGULAR
] ) : bool�������������������������������ֺ͵�Ԫ�Ĺ�������Ҫ���ڶ���Щ��Ԫ˳�����Ҫ�Ľ�������������
Note:
If two members compare as equal, their relative order in the sorted array is undefined.
�ɹ�ʱ���� TRUE
�� ������ʧ��ʱ���� FALSE
��
Example #1 asort() ����
<?php
$fruits = array("d" => "lemon", "a" => "orange", "b" => "banana", "c" => "apple");
asort($fruits);
foreach ($fruits as $key => $val) {
echo "$key = $val\n";
}
?>
�������̻������
c = apple b = banana d = lemon a = orange
fruits ��������ĸ˳�������ҵ�Ԫ��������ϵ���䡣