asort()
我想使用并限制要返回的元素数量对数组进行排序。
让我举个例子:
$words = array (
["lorem"]=>
int(2)
["sssss"]=>
int(2)
["dolor"]=>
int(4)
["ipsum"]=>
int(2)
["title"]=>
int(1) );
=limit = 2 我希望得到回报:
$words = array (
["dolor"]=>
int(4)
["lorem"]=>
int(2));
换句话说,我必须仅根据以下条件排序并返回第一次出现$limit
任何的想法 ?