本文整理汇总了PHP中security::decode方法的典型用法代码示例。如果您正苦于以下问题:PHP security::decode方法的具体用法?PHP security::decode怎么用?PHP security::decode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类security
的用法示例。
在下文中一共展示了security::decode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: checkLogin
/**
* 验证是否登录,如果已经登录,返回登录的uid 和 phone 否则返回false
* @param [type] $token [description]
* @return [type] [description]
*/
public static function checkLogin($token)
{
$uid = security::decode(base64_decode($token));
if (empty($uid)) {
return false;
}
$db = DB::getInstance();
$sql = "select a.uid, b.enable from t_login a , t_user b where a.uid={$uid} and a.token = '{$token}' and a.uid = b.uid limit 1";
$rst = $db->get_one($sql);
if (empty($rst)) {
return false;
}
return $rst;
}
示例2: checkAdminLogin
protected function checkAdminLogin($type = 'json')
{
$token = cookie::get('adminLogin');
$clientStr = security::decode($token);
$hasLogin = false;
if (!empty($clientStr) && !empty($token)) {
$realUsername = DConfig::get('adminUserName');
$realPwd = DConfig::get('adminPwd');
$str = md5($realUsername . $realPwd);
if ($str == $clientStr) {
$hasLogin = true;
}
}
if (!$hasLogin) {
if ($type == 'json') {
$this->msg = new Msg(-1, '对不起,请先登录');
exit;
} else {
header("Location:/adminPage/login");
}
}
}