本文整理汇总了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'));
}
}
示例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);
}
示例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);
}