二维数组如何排序? 很常用的功能
$data = array(
array(
'id' => 5698,
'goods' => '栗子',
'price' => '60',
),
array(
'id' => 4767,
'goods' => '苹果',
'price' => '600',
),
array(
'id' => 3809,
'goods' => '鸡蛋',
'price' => '6000',
)
);
$price= array_column($data,'price');
array_multisort($price,SORT_DESC,$data);
就最下面的一句话很简单的就排序完成啦