How PHP is sorted based on the key values in the array

Source: Internet
Author: User

  
  'aa','price'=>1050),    array('name'=>'bb','price'=>4300),    array('name'=>'cc','price'=>3100),    array('name'=>'dd','price'=>4900),    array('name'=>'ee','price'=>960),    array('name'=>'ff','price'=>6299),    array('name'=>'gg','price'=>1200));function arr_sort($array,$key,$order="asc"){ //asc是升序 desc是降序    $arr_nums=$arr=array();    foreach($array as $k=>$v){        $arr_nums[$k]=$v[$key];    }    if($order=='asc'){        asort($arr_nums);    }else{        arsort($arr_nums);    }    foreach($arr_nums as $k=>$v){        $arr[$k]=$array[$k];    }    print_r($arr);}arr_sort($array,'price');

The above describes how PHP based on the key values in the array to sort, including the aspects of the content, I hope the PHP tutorial interested in a friend helpful.

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    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.