分类分类
更新时间:2026-04-09 14:09:54作者:zhao

说一下原理:
后台:计算各个类型的评论总和和全部评论。
后台函数代码:
/*统计评论*/
function getcccount($goods_id){
$sql="SELECT count(id_value) FROM ". $GLOBALS['ecs']->table('comment') ." WHERE id_value = $goods_id AND comment_rank!=0 and select_type=0 and parent_id=0";
$count = $GLOBALS['db']->getOne($sql);
if(empty($count)){
return '没有评论';
}
else
{
$sql="SELECT count(id_value) FROM ". $GLOBALS['ecs']->table('comment') ." WHERE id_value = $goods_id AND comment_rank =5 and select_type=0 and parent_id=0";
$count5 = $GLOBALS['db']->getOne($sql);
$sql="SELECT count(id_value) FROM ". $GLOBALS['ecs']->table('comment') ." WHERE id_value = $goods_id AND comment_rank =1 and select_type=0 and parent_id=0";
$count1 = $GLOBALS['db']->getOne($sql);
$sql="SELECT count(id_value) FROM ". $GLOBALS['ecs']->table('comment') ." WHERE id_value = $goods_id and select_type=0 and parent_id=0 AND comment_rank BETWEEN 2 AND 4";
$count3 = $GLOBALS['db']->getOne($sql);
$hb =percent($count5,$count);
$zb =percent( $count3,$count);
$cb =percent($count1,$count);
$arr=array();
$arr['all']=$count; //统计全部评论
$arr['hao']=$count5; //统计好评个数
$arr['zhong']=$count3; //统计中评个数
$arr['cha']=$count1 ; //统计差评个数
$arr['hb']=$hb; //好评百分比
$arr['zb']=$zb; //中评百分比
$arr['cb']=$cb; //差评百分比
return $arr;
}
}
/*百分比计算函数
*$p 被除数
*$t 总个数
*/
function percent($p,$t){
return sprintf('%.2f%%',$p/$t*100);
相关
傲视神魔传手游策略游戏13.55 Mv1.0.02026-04-09
下载三国志王道天下策略游戏2.18Gv0.9.8.12026-04-09
下载风云三国手机版策略游戏213.99 M2026-04-09
下载星之海手机版角色扮演2.78Gv1.1.598772026-04-09
下载迪士尼梦幻王国经营养成79.34 Mv11.5.0h2026-04-09
下载TapAim动作射击97.92 Mv2.0.12026-04-09
下载肖邦大冒险九游版策略游戏133.64 Mv1.02026-04-09
下载放松时光与你共享Lo-Fi故事休闲益智951.66 Mv1.4.62026-04-09
下载羽毛球对决体育竞技175.66 Mv4.12026-04-09
下载假面骑士泽兹变身模拟器休闲益智51.91 Mv1.00.302026-04-09
下载餐车厨师烹饪游戏苹果版模拟游戏327.2 Mv8.682026-04-09
下载最终幻想7永恒危机ios版角色游戏1.5Gv3.6.02026-04-09
下载










