(PHP 4, PHP 5, PHP 7)
rsort — ��������������
&$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 rsort() ��
<?php
$fruits = array("lemon", "orange", "banana", "apple");
rsort($fruits);
foreach ($fruits as $key => $val) {
echo "$key = $val\n";
}
?>
�������̻������
0 = orange 1 = lemon 2 = banana 3 = apple
fruits ��������ĸ˳����������
Note: �˺���Ϊ
array
�е�Ԫ�ظ����µļ������⽫ɾ��ԭ�еļ����������ǽ�����������������