本文整理汇总了PHP中UserUtils::getRepeatList方法的典型用法代码示例。如果您正苦于以下问题:PHP UserUtils::getRepeatList方法的具体用法?PHP UserUtils::getRepeatList怎么用?PHP UserUtils::getRepeatList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserUtils
的用法示例。
在下文中一共展示了UserUtils::getRepeatList方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _getUserInfo
private function _getUserInfo($res, $uid, $puid)
{
loadcache('usergroups');
$space = UserUtils::getUserInfo($puid);
if (empty($space)) {
return WebUtils::makeErrorInfo_oldVersion($res, 'space_does_not_exist');
}
$spacePro = UserUtils::getUserProfile($puid);
$spaceCount = DzUserInfo::getCommonMemberCount($puid);
$space = array_merge($space, $spacePro, $spaceCount);
$listCount = (int) DzUserInfo::getUserPhotosHomeAlbumCount($puid);
$res['flag'] = $uid == $puid ? 1 : 0;
$res['is_black'] = (int) UserUtils::isBlacklist($uid, $puid) ? 1 : 0;
$res['is_follow'] = (int) UserUtils::isFollow($uid, $puid);
$res['isFriend'] = (int) UserUtils::isFriend($uid, $puid) ? 1 : 0;
$res['icon'] = UserUtils::getUserAvatar($puid, $spacePro);
$res['level_url'] = '';
$res['name'] = $space['username'];
$res['email'] = $space['email'];
$res['status'] = (int) UserUtils::getUserLoginStatus($puid);
$res['gender'] = (int) UserUtils::getUserGender($puid, $spacePro);
$res['email'] = $space['email'];
$res['score'] = (int) $space['credits'];
$res['credits'] = (int) $space['credits'];
$res['gold_num'] = (int) $space['extcredits2'];
$res['topic_num'] = (int) $this->_getHomeTopicNum($puid);
$res['photo_num'] = (int) $listCount['nums'];
$res['reply_posts_num'] = (int) DzUserInfo::getTopicsByUidWithPostCount($puid);
$res['essence_num'] = (int) $space['digestposts'];
$res['friend_num'] = (int) DzUserInfo::getFollowFriendsCount($puid);
$res['follow_num'] = (int) DzUserInfo::getFollowedFriendsCount($puid);
$res['level'] = (int) DzCommonUserList::getUserLevel($space['groupid']);
$res['userTitle'] = UserUtils::getUserTitle($puid, $space);
$repeatList = array();
foreach (UserUtils::getRepeatList($uid) as $user) {
$repeatList[] = array('userName' => $user);
}
$res['body']['repeatList'] = $repeatList;
$res['body']['profileList'] = $this->_getPersonalDataInfo($puid, $space);
$res['body']['creditList'] = $this->_getStatisticalInformation($uid, $space);
$res['body']['creditShowList'] = $this->_getStatisticalInforSet($uid, $space);
return $res;
}