diff --git a/application/common.php b/application/common.php index 6548d268b..1864f5380 100644 --- a/application/common.php +++ b/application/common.php @@ -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)); } diff --git a/application/route.php b/application/route.php index a95382f27..7530ac8fb 100644 --- a/application/route.php +++ b/application/route.php @@ -9,4 +9,6 @@ // | Author: liu21st // +---------------------------------------------------------------------- -return []; +return [ + ':a-:b$' => ':1/:b' +];