本文實例講述了PHP按指定鍵值對二維數組進行排序的方法。分享給大家供大家參考,具體如下:
問題:
有數組:復制代碼 代碼如下:array(0=>array('id'=>1,'price'=>50),1=>array('id'=>2,'price'=>60));
要求根據數組的price這個字段進行排序。
實現代碼如下:
<?php $array[] = array('id'=>1,'price'=>50); $array[] = array('id'=>2,'price'=>70); $array[] = array('id'=>3,'price'=>30); $array[] = array('id'=>4,'price'=>20); foreach ($array as $key=>$value){ $id[$key] = $value['id']; $price[$key] = $value['price']; } array_multisort($price,SORT_NUMERIC,SORT_DESC,$id,SORT_STRING,SORT_ASC,$array); echo '<pre>'; print_r($array); echo '</pre>'; ?>
運行結果:
Array ( [0] => Array ( [id] => 2 [price] => 70 ) [1] => Array ( [id] => 1 [price] => 50 ) [2] => Array ( [id] => 3 [price] => 30 ) [3] => Array ( [id] => 4 [price] => 20 ) )
希望本文所述對大家PHP程序設計有所幫助。