개발 꿀팁/PHP

php는 3단계 분류 데이터를 처리한다

Jammie 2022. 10. 27. 12:40
반응형
<?php
//엉터리로 쓴
// 링크 데이터베이스
$link = mysqli_connect('localhost','root','root');
if($link == null){
  exit;
}
mysqli_select_db($link,'test');
$link->query("SET NAMES utf8");
$sql = "select * from tp_goods_categorys";
$res = mysqli_query($link,$sql);
while($res && $row = mysqli_fetch_assoc($res)) {
  $list[] = $row;
}
echo '<pre>';
print_r(res($list)); 
function res($items){
    $tree = array();
    foreach($items as $key =>$val){
            $list = explode(',',$val['categorys_path']);
            switch(count($list)){
                case 1:
                    $tree[$val['id']] = $val;
                    break;
                case 2:
                    $tree[$val['categorys_pid']]['son'][$val['id']] = $val;
                    break;
                case 3:
                    $tree[$list[1]]['son'][$list[2]]['son'] = $val;
                    break;
            }
    }
    return $tree;
}
<?php
//재귀
$array = array(
array('id' => 1, 'pid' => 0, 'name' => '후베이 성'),
array('id' => 2, 'pid' => 0, 'name' => '베이징시'),
array('id' => 3, 'pid' => 1, 'name' => '무한시'),
array('id' => 4, 'pid' => 2, 'name' => '차오양 구'),
array('id' => 5, 'pid' => 2, 'name' => '퉁저우 구'),
array('id' => 6, 'pid' => 4, 'name' => '왕징'),
array('id' => 7, 'pid' => 4, 'name' => '주선교'),
array('id' => 8, 'pid' => 3, 'name' => '우창구'),
array('id' => 9, 'pid' => 1, 'name' => '우안 시'),
);
function cation($arr,$num=0,$m=1)
{
    $list = [];
    foreach($arr as $k=>$v){
        if($v['pid'] === $num){
            $v['level'] = $m;
            $v['son'] = cation($arr,$v['id'],$m+1);
            $list[] = $v;
        }
    }
    return $list;
}
$list = cation($array);
echo '<pre>';
print_r($list);
echo '</pre>';

대체수요

(1차원 배열 재구성)

//    분류 데이터 항목 분류 처리
    public function allMenu($cates,$pid=0,$level=0){
        static $cateArr = array();
        for($i=0;$i<count($cates);$i++){
            if($cates[$i]['pid']==$pid){
                $cates[$i]['level']=$level;
                $cateArr[]=$cates[$i];
                $this->allMenu($cates,$cates[$i]['id'],$level+1);
            }
        }
        return $cateArr;
    }

 

반응형