标签: php arrays sorting
我有一个包含许多元素的数组:
$items[] = array($url, $pic, $price);
我需要在$ price升序后对$项目进行排序。有这么好的功能吗?
答案 0 :(得分:1)
function cmp($a, $b) { return $b[2] - $a[2]; } usort($item, "cmp")