本文整理汇总了PHP中UserProfile::userinfo_3方法的典型用法代码示例。如果您正苦于以下问题:PHP UserProfile::userinfo_3方法的具体用法?PHP UserProfile::userinfo_3怎么用?PHP UserProfile::userinfo_3使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserProfile
的用法示例。
在下文中一共展示了UserProfile::userinfo_3方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$data = array('userinfo' => $userinfo, 'parentpercent' => $parentpercent, 'likeNum' => $likeNum);
echo $msg->show('200', $data);
}
exit;
}
$userinfo = $re->userinfo($uid, null, $page);
//个人信息
if (!$userinfo) {
echo $msg->show(405);
exit;
}
$parentpercent = $re->parentpercent($uid);
//父母信息完成比例
$likeNum = $re->likeNum($uid);
//收藏个数
$data = array('userinfo' => $userinfo, 'parentpercent' => $parentpercent, 'likeNum' => $likeNum);
echo $msg->show('200', $data);
} else {
//第三方用户信息查询
if (isset($_GET['usid'])) {
$re = new UserProfile();
$userinfo = $re->userinfo_3($_GET['usid']);
if ($userinfo) {
echo $msg->show('200', $userinfo);
} else {
echo $msg->show(405);
}
} else {
echo $msg->show(400);
}
}