码迷,mamicode.com
首页 > Web开发 > 详细

php递归函数,性能给力

时间:2014-11-26 10:54:13      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   for   on   div   log   cti   as   

function arPro($data,$res=array(),$pid=‘0‘,$level=‘0‘){
  foreach ($data as $k => $v){
    if($v[‘comment_parent‘]==$pid){
      $res[$v[‘id‘]][‘info‘]=$v;
      if($level!=‘0‘){
        if($v[‘level‘]==$level){
          $child=null;
        }
        else{
          $child=arPro($data,array(),$v[‘comment_id‘],$level+1);
        }
        $res[$v[‘id‘]][‘child‘]=$child;
      }
      else{
        $child=arPro($data,array(),$v[‘comment_id‘]);
        if($child==‘‘||$child==null){
            $res[$v[‘id‘]][‘child‘]=null;
        }
        else{
            $res[$v[‘id‘]][‘child‘]=$child;
        }
      }
    }
  }
  return $res;
}

  

php递归函数,性能给力

标签:blog   io   ar   for   on   div   log   cti   as   

原文地址:http://www.cnblogs.com/qiandu/p/4122533.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!