以下代码返回类别树。
如何获得每个具有子类别的类别中的产品数量?我的意思是在每个子类别中对值进行求和。
直到现在,我才成功获得最后一级儿童类别的计数:
function menuList($data, $parent = 0 ){
static $i = 1;
$tab = str_repeat(' ',$i);
if($data[$parent]){
$html = $tab.'<ul id="menu'.$i.'">';
$i++;
$count=0;
foreach($data[$parent] as $v){
$id = $v->id;
$categoryname=$v->bg_category;
if(in_array($id, $_SESSION['active_product_categories'])){
$q='select distinct product_id from products_to_categories where category_id="'.$id.'"';
$res=mysql_query($q) or die());
$num_rows=mysql_num_rows($res);
$count='( '.$num_rows.' )';
}
$child = menuList($data, $v->id);
$html .= $tab.'<li>';
$html .= '<a href="'.$v->WebSite.'/shop/index.php?offers='.$id.'">'.$categoryname.' '.$count.' </a>';
if($child){
$i–;
$html .= $child;
$html .= $tab;
}
$html .= '</li>';
}
$html .= $tab.'</ul>';
return $html;
} else {
return false;
}
}
$query = mysql_query('select * from products_categories where visible="1" group by bg_category order by bg_category ASC');
while($r=mysql_fetch_object($query)){
$data[$r->parent][] = $r;
}
$menu = menuList($data);
echo $menu;
请查看截图。
以下是屏幕截图:http://tinypic.com/view.php?pic=zwgvoz&s=8#.U957sizlrDc
答案 0 :(得分:0)
如果我是你,我会尝试写两个课程,下面我在伪代码中添加了一些例子:
Class Menu
{
private $aSubMenus
public function __construct()
public function getNumberOfItems()
public function addMenuItem()
public function getHTML()
public function load($menuID)
}
Class MenuItem
{
public function __construct()
public function getHTML()
}
答案 1 :(得分:0)
好吧,我不知道你的表的结构,但为什么不在SQL中修复它:
$q = 'SELECT parent_id, parent_name, count(child_id) FROM your_table GROUP BY parent_id';
然后才构建HTML视图。 这段代码非常近似。