本文整理汇总了PHP中UserProfile::checkAuth方法的典型用法代码示例。如果您正苦于以下问题:PHP UserProfile::checkAuth方法的具体用法?PHP UserProfile::checkAuth怎么用?PHP UserProfile::checkAuth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserProfile
的用法示例。
在下文中一共展示了UserProfile::checkAuth方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Response
<?php
//用户基本信息接口
require_once '../../models/Response.php';
require_once '../..//models/UserProfile.php';
require_once '../../models/UserProfile.php';
$msg = new Response();
$page = isset($_GET['page']) ? $_GET['page'] : null;
if (isset($_GET['uid']) || $_GET['tel']) {
$uid = $_GET['uid'];
$re = new UserProfile();
if (isset($_GET['password']) && isset($_GET['tel'])) {
$tel = $_GET['tel'];
$pwd = md5($_GET['password']);
$userinfo = $re->checkAuth($tel, $pwd);
//登录验证密码
if ($userinfo == FALSE) {
echo $msg->show('406');
} else {
$userinfo = $re->userinfo(null, $tel);
if (!isset($userinfo['nickname'])) {
$data = array('nickname' => $tel);
$condition = '`tel`=' . $tel;
$re->updateUserInfo($data, $condition);
}
$parentpercent = $re->parentpercent($uid);
//父母信息完成比例
$likeNum = $re->likeNum($uid);
//收藏个数
$data = array('userinfo' => $userinfo, 'parentpercent' => $parentpercent, 'likeNum' => $likeNum);
echo $msg->show('200', $data);