首頁  >  文章  >  後端開發  >  二維數組排序函數array_orderby使用案例詳解

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

php中世界最好的语言
php中世界最好的语言原創
2018-05-17 15:02:081316瀏覽

這次帶給大家二維陣列排序函數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(&#39;array_multisort&#39;, $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(&#39;volume&#39; => 67, &#39;edition&#39; => 2);
$data[] = array(&#39;volume&#39; => 86, &#39;edition&#39; => 1);
$data[] = array(&#39;volume&#39; => 85, &#39;edition&#39; => 6);
$data[] = array(&#39;volume&#39; => 98, &#39;edition&#39; => 2);
$data[] = array(&#39;volume&#39; => 86, &#39;edition&#39; => 6);
$data[] = array(&#39;volume&#39; => 67, &#39;edition&#39; => 7);
// Pass the array, followed by the column names and sort flags
$sorted = array_orderby($data, &#39;volume&#39;, SORT_DESC, &#39;edition&#39;, 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連線資料庫步驟詳解

#

以上是二維數組排序函數array_orderby使用案例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn