ThinkSNS-应用开发范例-更新首页统计数目
查看全部词条命名空间:Main
导航: 上一页
更新首页统计数目
如下图所示,每次发送礼品时都更新接收礼品人的礼品数。
我们要在发送礼品成功后增加以下统计程序:
//更新个人空间的礼品统计
$this->_gift_count($toUser);
_gift_count 方法如下:
/**
- _gift_count
- 扣除(或增加)用户相应积分
- @param $uids array 礼品接收人ID
- @return void;
- /
private function _gift_count($uids){
foreach ($uids as $uid){
$map['toUserId'] = $uid;
$count = $this->where($map)->count();
$this->api->space_changeCount( 'gift',$count,$uid);
}
}