mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
更新加密解密函数
This commit is contained in:
parent
4b8fa1a1f6
commit
588ea187e6
@ -38,7 +38,7 @@ function & load_wechat($type = '') {
|
|||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
function encode($data) {
|
function encode($data) {
|
||||||
return str_replace(array('+', '/', '='), array('-', '_', ''), base64_encode(serialize($data)));
|
return str_replace(['+', '/', '='], ['-', '_', ''], base64_encode(serialize($data)));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -47,9 +47,9 @@ function encode($data) {
|
|||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
function decode($string) {
|
function decode($string) {
|
||||||
$data = str_replace(array('-', '_'), array('+', '/'), $string);
|
$data = str_replace(['-', '_'], ['+', '/'], $string);
|
||||||
$mod4 = strlen($data) % 4;
|
$mod4 = strlen($data) % 4;
|
||||||
($mod4) && $data .= substr('====', $mod4);
|
!!$mod4 && $data .= substr('====', $mod4);
|
||||||
return unserialize(base64_decode($data));
|
return unserialize(base64_decode($data));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,4 +9,6 @@
|
|||||||
// | Author: liu21st <liu21st@gmail.com>
|
// | Author: liu21st <liu21st@gmail.com>
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
return [];
|
return [
|
||||||
|
':a-:b$' => ':1/:b'
|
||||||
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user