如何在ecshop的促销商品下显示时间

 我来答
福喜900
2015-01-11 · TA获得超过6.1万个赞
知道大有可为答主
回答量:1.1万
采纳率:0%
帮助的人:1亿
展开全部
只要把以下的代码放在index.php中就可以了。

function get_cat_brands( $cat, $num = 0, $app = “category” )

{

$where = “”;

if ( $num != 0 )

{

$where = ” limit “.$num;

}

$children = 0 < $cat ? ” AND “.get_children( $cat ) : “”;

$sql = “SELECT b.brand_id, b.brand_name, b.brand_logo, COUNT(g.goods_id) AS goods_num, IF(b.brand_logo > ”, ’1′, ’0′) AS tag FROM “.$GLOBALS['ecs']->table( “brand” ).”AS b, “.$GLOBALS['ecs']->table( “goods” ).” AS g “.( “WHERE g.brand_id = b.brand_id “.$children.” ” ).”GROUP BY b.brand_id HAVING goods_num > 0 ORDER BY tag DESC, b.sort_order ASC “.$where;

$row = $GLOBALS['db']->getAll( $sql );

foreach ( $row as $key => $val )

{

$row[$key]['id'] = $val['brand_id'];

$row[$key]['name'] = $val['brand_name'];

$row[$key]['logo'] = $val['brand_logo'];

$row[$key]['url'] = build_uri( $app, array(

“cid” => $cat,

“bid” => $val['brand_id']

), $val['brand_name'] );

}

return $row;

}

其中$cat就是分类ID。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式