当前位置: 首页>>代码示例>>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;未经允许,请勿转载。