通过子数组中的值对数组进行排序

时间:2014-03-26 09:22:43

标签: php arrays sorting

我有一个包含许多元素的数组:

$items[] = array($url, $pic, $price);

我需要在$ price升序后对$项目进行排序。有这么好的功能吗?

1 个答案:

答案 0 :(得分:1)

  function cmp($a, $b)
  {
     return $b[2] - $a[2];
  }

     usort($item, "cmp")