rsort

(PHP 4, PHP 5, PHP 7)

rsort��������������

˵��

rsort ( array &$array [, int $sort_flags = SORT_REGULAR ] ) : bool

�������������������������ߵ���ͣ���

Note:

If two members compare as equal, their relative order in the sorted array is undefined.

����

array

��������顣

sort_flags

�����ÿ�ѡ���� sort_flags �ı��������Ϊ������� sort()��

����ֵ

�ɹ�ʱ���� 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 �е�Ԫ�ظ����µļ������⽫ɾ��ԭ�еļ����������ǽ�����������������

�μ�