php多级归类查询

WBOY
Release: 2016-06-13 13:16:06
Original
1296 people have browsed it

php多级分类查询
http://www.oschina.net/question/167679_56466 类似这种效果,要怎么实现,还是有更好的方法

------解决方案--------------------

PHP code
$a = Array(
  '0' => Array('id' => 3,'sid' => 0),
  '1' => Array('id' => 4,'sid' => 0),
  '2' => Array('id' => 5,'sid' => 3),
  '3' => Array('id' => 6,'sid' => 0),
  '4' => Array('id' => 7,'sid' => 4),
  '5' => Array('id' => 8,'sid' => 0),
);

function cmsort($ar, $sid=0, &$res=array()) {
  foreach($ar as $r) {
    if($r['sid'] == $sid) {
      $res[] = $r;
      cmsort($ar, $r['id'], $res);
    }
  }
  return $res;
}

var_export(cmsort($a)); <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