php數組排序函數

來源:互聯網
上載者:User

標籤:tor   param   new   reset   desc   val   pos   arp   eva   

$data[]=array(‘team‘=>$item[‘post_name‘],‘name‘=>$item[‘name‘],‘total‘=>$total,‘total_point‘=>$total_pt,‘total_hd‘=>$total_hd,‘ChouSale‘=>$ChouSale,‘ChouSale_pt‘=>$ChouSale_pt,‘ChouSale_hd‘=>$ChouSale_hd,);$data = sysSortArray($data,‘total_point‘,‘SORT_DESC‘,‘SORT_NUMERIC‘);function sysSortArray($ArrayData,$KeyName1,$SortOrder1 = "SORT_ASC",$SortType1 = "SORT_REGULAR"){if(!is_array($ArrayData)){return $ArrayData;}$ArgCount = func_num_args();for($I = 1;$I < $ArgCount;$I ++){$Arg = func_get_arg($I);if(!eregi("SORT",$Arg)){$KeyNameList[] = $Arg;$SortRule[]    = ‘$‘.$Arg;}else{$SortRule[]    = $Arg;}}foreach($ArrayData AS $Key => $Info){foreach($KeyNameList AS $KeyName){${$KeyName}[$Key] = $Info[$KeyName];}}$EvalString = ‘array_multisort(‘.join(",",$SortRule).‘,$ArrayData);‘;eval ($EvalString);return $ArrayData;}

  用PHP內建array_multisort函數排序 

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

  自訂函數排序1

$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‘];    }    $ret = arraySort($data, ‘volume‘, ‘desc‘);    print_r($ret);    /**     * @desc arraySort php二維數組排序 按照指定的key 對數組進行排序     * @param array $arr 將要排序的數組     * @param string $keys 指定排序的key     * @param string $type 排序類型 asc | desc     * @return array     */    function arraySort($arr, $keys, $type = ‘asc‘) {        $keysvalue = $new_array = array();        foreach ($arr as $k => $v){            $keysvalue[$k] = $v[$keys];        }        $type == ‘asc‘ ? asort($keysvalue) : arsort($keysvalue);        reset($keysvalue);        foreach ($keysvalue as $k => $v) {           $new_array[$k] = $arr[$k];        }        return $new_array;    }

  

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.