當前位置: 首頁>>代碼示例>>PHP>>正文


PHP security::decode方法代碼示例

本文整理匯總了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;
 }
開發者ID:skyworld,項目名稱:SKY_PHP,代碼行數:19,代碼來源:Comm.class.php

示例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");
         }
     }
 }
開發者ID:skyworld,項目名稱:SKY_PHP,代碼行數:22,代碼來源:BaseController.class.php


注:本文中的security::decode方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。