From 588ea187e6d6096e6ab0367be9dd7084c198d79d Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 10 Feb 2017 03:45:59 -0500 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=8A=A0=E5=AF=86=E8=A7=A3?= =?UTF-8?q?=E5=AF=86=E5=87=BD=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/common.php | 6 +++--- application/route.php | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) 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' +];