当前位置: 首页>>代码示例>>PHP>>正文


PHP Encrypt::aesEncode方法代码示例

本文整理汇总了PHP中Encrypt::aesEncode方法的典型用法代码示例。如果您正苦于以下问题:PHP Encrypt::aesEncode方法的具体用法?PHP Encrypt::aesEncode怎么用?PHP Encrypt::aesEncode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Encrypt的用法示例。


在下文中一共展示了Encrypt::aesEncode方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: set

 /**
  * 设置cookie
  * @method set
  * @param  [string] $name   [cookie名称]
  * @param  [mixed] $value  [cookie值]
  * @param  [string] $path   [存取路径]
  * @param  [int] $expire 有效时间
  * @author NewFuture
  */
 public static function set($name, $value, $path = '', $expire = null)
 {
     if ($value = Encrypt::aesEncode(json_encode($value), self::config('key'), true)) {
         $path = $path ?: self::config('path');
         $expire = $expire ? $_SERVER['REQUEST_TIME'] + $expire : null;
         return setcookie($name, $value, $expire, $path, self::config('domain'), self::config('secure'), self::config('httponly'));
     }
 }
开发者ID:wuxw,项目名称:YYF,代码行数:17,代码来源:Cookie.php

示例2: token

 /**
  * 生成token
  * @method token
  * @param  [type] $user    [id或者包括用户id,number,password(加密后的),$sch_id的数组]
  * @return [type]           [description]
  * @author NewFuture
  */
 public static function token($user)
 {
     if (!$user) {
         return false;
     } elseif (is_numeric($user) && ($data = UserModel::field('id,number,password,sch_id')->find($user)->get())) {
         $token = self::createBaseToken($data);
     } elseif (isset($user['id']) && ($data['id'] = $user['id']) && isset($user['number']) && ($data['number'] = $user['number']) && isset($user['password']) && ($data['password'] = $user['password']) && isset($user['sch_id']) && ($data['sch_id'] = $user['sch_id'])) {
         $token = self::createBaseToken($data);
     } else {
         return false;
     }
     $token = $data['id'] . ':' . $token . ':' . $_SERVER['REQUEST_TIME'];
     return Encrypt::aesEncode($token, Cookie::key(), true);
 }
开发者ID:derek-chow,项目名称:YunYinService,代码行数:21,代码来源:Auth.php

示例3: encode

 /**
  * Cookie数据加密编码
  * @method encode
  * @param  [type] $data         [description]
  * @return [type] [description]
  * @author NewFuture
  */
 private static function encode($data)
 {
     return Encrypt::aesEncode(json_encode($data), self::config('key'), true);
 }
开发者ID:derek-chow,项目名称:YunYinService,代码行数:11,代码来源:Cookie.php


注:本文中的Encrypt::aesEncode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。