(PHP 4, PHP 5, PHP 7)
arsort — �������������������������ϵ
&$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 arsort() ����
<?php
$fruits = array("d" => "lemon", "a" => "orange", "b" => "banana", "c" => "apple");
arsort($fruits);
foreach ($fruits as $key => $val) {
echo "$key = $val\n";
}
?>
�������̻������
a = orange d = lemon b = banana c = apple
fruits ��������ĸ˳�����������ҵ�Ԫ��������ϵ���䡣