二維數組排序函數array_orderby使用案例詳解

來源:互聯網
上載者:User
這次給大家帶來二維數組排序函數array_orderby使用案例詳解,二維數組排序函數array_orderby使用的注意事項有哪些,下面就是實戰案例,一起來看一下。

<?php/**I came up with an easy way to sort database-style results. This does what example 3 does, except it takes care of creating those intermediate arrays for you before passing control on to array_multisort(). */function array_orderby(){  $args = func_get_args();  $data = array_shift($args);  foreach ($args as $n => $field) {    if (is_string($field)) {      $tmp = array();      foreach ($data as $key => $row)        $tmp[$key] = $row[$field];      $args[$n] = $tmp;      }  }  $args[] = &$data;  call_user_func_array('array_multisort', $args);  return array_pop($args);}/*The sorted array is now in the return value of the function instead of being passed by reference.*/$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);// Pass the array, followed by the column names and sort flags$sorted = array_orderby($data, 'volume', SORT_DESC, 'edition', SORT_ASC);print_r($sorted)?>

運行結果:

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    ))

相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!

推薦閱讀:

ThinkPHP串連資料庫操作案列分析

ThinkPHP架構PDO串連資料庫步驟詳解

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.