ChannelProtocolModel::trueDeleteUserAppData PHP Method

trueDeleteUserAppData() public method

彻底删除用户数据
public trueDeleteUserAppData ( $uidArr )
    public function trueDeleteUserAppData($uidArr)
    {
        if (empty($uidArr)) {
            return false;
        }
        $map['uid'] = array('in', $uidArr);
        M('channel')->where($map)->delete();
        M('channel_follow')->where($map)->delete();
    }