大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
1、无限极往上获取平台类目树信息
在浚县等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供成都网站设计、网站制作 网站设计制作按需开发,公司网站建设,企业网站建设,品牌网站设计,成都全网营销推广,外贸营销网站建设,浚县网站建设费用合理。
数据结构:商品类目id《category_id,商品类目父id《parent_id
数据需求:根据传入最低层类目id,获取所有上级类目信息(包含自己)
代码如下:
1 // 无限极往上获取平台类目树信息 2 public function platformCategoryVerify($platform, $site_code, $platform_category_id, $tree) 3 { 4 $apCategories_info = ApCategories::where([['category_id' , $platform_category_id],['platform' , $platform],['site_code' , $site_code]])->first(['category_id', 'category_name', 'parent_id', 'level']); 5 if(!empty($apCategories_info->category_id)){ 6 $tree[] = $apCategories_info->toArray(); 7 $tree = $this->platformCategoryVerify($platform, $site_code, $apCategories_info->parent_id, $tree); //此处加“$tree = ” 是递归的关键,不然会导致 $tree数组,被覆盖 8 } 9 return $tree; 10 }