如何实现无限分类 点击一个商品分类 显示本分类以及所有子分类的商品?
function isHaveChildCategory($cid){
$m=M('goods_category');
$con['goodscategory_pid']=$cid;
$result=$m->where($con)->getField('goodscategory_id',true);
foreach($result as $key=>$value){
isHaveChildCategory($value);
}
return $result;
}
MOEMOE哟
9 years, 1 month ago