13,"name"=>"kitty"),array("ID"=>22,"name"=>"sony"),array("ID"=&g"/> 13,"name"=>"kitty"),array("ID"=>22,"name"=>"sony"),array("ID"=&g">

php二维数组排序,该怎么处理

WBOY
Release: 2016-06-13 13:30:01
Original
787 people have browsed it

php二维数组排序
$ary=array(array("ID"=>13,"name"=>"kitty"),array("ID"=>22,"name"=>"sony"),array("ID"=>17,"name"=>"picker"));
我想对其按照ID升序调整一维数组的顺序,结果为
array(array("ID"=>13,"name"=>"kitty"),array("ID"=>17,"name"=>"picker"),array("ID"=>22,"name"=>"sony"));
应该怎么写?

------解决方案--------------------
前两天才有人问过...

PHP code

$ary=array(array("ID"=>13,"name"=>"kitty"),array("ID"=>22,"name"=>"sony"),array("ID"=>17,"name"=>"picker"));
foreach ($ary as $key => $value) {
    $Id[$key] =$value['ID'];
    $Name[$key] = $value['name'];
}
array_multisort($Id, SORT_ASC,$ary);

print_r($ary); <div class="clear">
                 
              
              
        
            </div>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template