更新加密解密函数

This commit is contained in:
Anyon 2017-02-10 03:45:59 -05:00
parent 4b8fa1a1f6
commit 588ea187e6
2 changed files with 6 additions and 4 deletions

View File

@ -38,7 +38,7 @@ function & load_wechat($type = '') {
* @return string
*/
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
*/
function decode($string) {
$data = str_replace(array('-', '_'), array('+', '/'), $string);
$data = str_replace(['-', '_'], ['+', '/'], $string);
$mod4 = strlen($data) % 4;
($mod4) && $data .= substr('====', $mod4);
!!$mod4 && $data .= substr('====', $mod4);
return unserialize(base64_decode($data));
}

View File

@ -9,4 +9,6 @@
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
return [];
return [
':a-:b$' => ':1/:b'
];