本文整理汇总了PHP中Authenticate::platform方法的典型用法代码示例。如果您正苦于以下问题:PHP Authenticate::platform方法的具体用法?PHP Authenticate::platform怎么用?PHP Authenticate::platform使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Authenticate
的用法示例。
在下文中一共展示了Authenticate::platform方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: validUserSession
public function validUserSession($app_id, $user_id, $access_token)
{
if ($app_id && $user_id && $access_token) {
$check = $this->_db->select("user_session us", "us.session_id,us.device_token,us.mac_id,us.platform,us.user_id,u.name,u.email", "join user u on u.user_id=us.user_id", "where us.app_id='{$app_id}' and us.user_id='{$user_id}' and access_token='{$access_token}' and login_status='1'");
if ($check) {
if ($this->_db->getNumRows() == 1) {
self::$session_id = $this->_db->getFirst()['session_id'];
self::$session_user_id = $this->_db->getFirst()['user_id'];
self::$device_token = $this->_db->getFirst()['device_token'];
self::$mac_id = $this->_db->getFirst()['mac_id'];
self::$platform = $this->_db->getFirst()['platform'];
self::$session_user_name = $this->_db->getFirst()['name'];
self::$session_user_email = $this->_db->getFirst()['email'];
self::$session_user_type = "user";
return true;
} else {
self::$VALIDATION["error"] = 1;
self::$VALIDATION['status'] = 401;
self::$VALIDATION['message'] = "Invalid access token.";
}
} else {
self::$VALIDATION["error"] = 1;
self::$VALIDATION['status'] = 401;
self::$VALIDATION['message'] = "Invalid access parameters.";
}
} else {
self::$VALIDATION["error"] = 1;
self::$VALIDATION['status'] = 400;
self::$VALIDATION['message'] = "Access parameters not given.";
}
return false;
}