From d2e629c3dab36c8a13c4a2950a3f1bc18b62ea56 Mon Sep 17 00:00:00 2001 From: pwf0112 Date: Thu, 24 Dec 2015 15:14:50 +0800 Subject: [PATCH] =?UTF-8?q?Route::getRouteUrl=E6=96=B9=E6=B3=95=20?= =?UTF-8?q?=E4=B8=80=E4=B8=AA=E5=8F=98=E9=87=8F=E5=90=8D=E7=A7=B0=E4=B9=A6?= =?UTF-8?q?=E5=86=99=E9=94=99=E8=AF=AF=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/think/route.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/think/route.php b/library/think/route.php index 88d3cc94..2526f8e4 100644 --- a/library/think/route.php +++ b/library/think/route.php @@ -648,7 +648,7 @@ class Route { if (strpos($name, '?')) { // [路由别名?]参数1=值1&参数2=值2... - list($name, $parsms) = explode('?', $name); + list($name, $params) = explode('?', $name); } if (!empty(self::$alias[$name])) {