熟悉ECSHOP的都知道,ECSHOP使用了缓存机制,所以为了能即时的反映最新的评论数,本方法使用的是 insert 函数形式,这样做的好处是能自动显示最新的评论数,而不需要经常去清除缓存。 下面是具体方法: 首先打开 includes/lib_insert.php 文件,在最下面增加一个函数(注意别加在 “?>”外面 )
//调用评论信息条数
function insert_comments_count($arr){ $count=$GLOBALS['db']->getOne('SELECT COUNT(*) FROM '.$GLOBALS['ecs']->table('comment')."WHERE id_value='$arr[id]'"."AND comment_type='$arr[type]' AND status = 1 AND parent_id = 0");return $count;}在你想显示评论数量的地方加入下面代码:已有{insert name=comments_count type=$type id=$id}人评论