php對二維數組進行排序的簡單一實例_PHP教程

來源:互聯網
上載者:User
本文介紹下,php中使用array_multisort函數進行二維數組排序的例子,有需要的朋友,參考下吧。繼上一篇文章:PHP二維數組排序自訂函數,今天,我們再介紹一個php二維數組排序的例子。
php對二維數組的排序很簡單,主要用到array_multisort函數。
例子:
複製代碼 代碼如下:
/**
* php二維數組排序
* edit www.jb51.net
*/
$data = array();
$data[] = array('volume' => 67, 'edition' => 2);
$data[] = array('volume' => 86, 'edition' => 1);
$data[] = array('volume' => 85, 'edition' => 6);
$data[] = array('volume' => 98, 'edition' => 2);
$data[] = array('volume' => 86, 'edition' => 6);
$data[] = array('volume' => 67, 'edition' => 7);
// 取得列的列表
foreach ($data as $key => $row)
{
$volume[$key] = $row['volume'];
$edition[$key] = $row['edition'];
}
array_multisort($volume, SORT_DESC, $edition, SORT_ASC, $data);
print_r($data);
?>

輸出結果:
複製代碼 代碼如下:
Array
(
[0] => Array
(
[volume] => 98
[edition] => 2
)

[1] => Array
(
[volume] => 86
[edition] => 1
)

[2] => Array
(
[volume] => 86
[edition] => 6
)

[3] => Array
(
[volume] => 85
[edition] => 6
)

[4] => Array
(
[volume] => 67
[edition] => 2
)

[5] => Array
(
[volume] => 67
[edition] => 7
)
)

說明:
array_multisort函數的參數非常靈活,大家可以參照php手冊中的說明,深入研究下。

http://www.bkjia.com/PHPjc/621678.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/621678.htmlTechArticle本文介紹下,php中使用array_multisort函數進行二維數組排序的例子,有需要的朋友,參考下吧。繼上一篇文章:PHP二維數組排序自訂函數,...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.