时间: 2022-01-14 19:48:38 人气: -
自定义公共函数库common_helper.php
1、统计指定字段的总和,比如统计某个歌手所有歌曲的总播放次数:
//获取数据总和
/**
@ $table 查询数据表 必填
@ $tjzd 统计字段名 必填
@ $czd 查询字段名 必填
@ $csj 查询字段内容 必填
**/
function getcouns($table='',$tjzd='',$czd='',$csj=0){
if(empty($type)) $type = PLUBPATH;
$ci = &get_instance();
if (!isset($ci->db)){$ci->load->database();}
$sql="SELECT sum(".$tjzd.") FROM ".CS_SqlPrefix.$table." where ".$czd."=".$csj;
$row = $ci->db->query($sql)->row_array();
$nums = !$row ? 0 : $row['sum('.$tjzd.')'];
return $nums;
}
如:
获取歌手id:8的所有歌曲的总播放次数
getcounts('dance','hits','singerid',8);
返回 100次