本文整理匯總了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");
}
}
}