$new_ship = array(
array('firstprice'=>6,'secondprice'=>4,),
array('firstprice'=>7,'secondprice'=>4,),
array('firstprice'=>5,'secondprice'=>7,),
array('firstprice'=>7,'secondprice'=>5,),
);數組
//二維數組的排序
foreach ($new_ship as $key => $row)
{
$volume[$key] = $row['firstprice'];
$edition[$key] = $row['secondprice'];
}
array_multisort($volume, SORT_DESC, $edition, SORT_DESC, $new_ship); 排序
此時$new_ship 就從新排序了。。ip
print_r($new_ship);it