美文网首页
二维数组排序

二维数组排序

作者: 大蚂蚁_be96 | 来源:发表于2019-02-19 14:28 被阅读0次

$sort = array(

    'direction' => 'SORT_ASC', //排序顺序标志 SORT_DESC 降序;SORT_ASC 升序

    'field'    => 'distance',      //排序字段

);

$arrSort = array();

foreach($shop_list AS $uniqid => $row){

    foreach($row AS $key=>$value){

        $arrSort[$key][$uniqid] = $value;

}

}

if($sort['direction']){

    array_multisort($arrSort[$sort['field']], constant($sort['direction']), $shop_list);

}

相关文章

网友评论

      本文标题:二维数组排序

      本文链接:https://www.haomeiwen.com/subject/akzxyqtx.html