From 56008a2c36099a03342a46b138a15af5ce0908d3 Mon Sep 17 00:00:00 2001 From: thinkphp Date: Thu, 16 Feb 2017 17:55:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3Route=E7=B1=BBparseUrlPath?= =?UTF-8?q?=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/think/Route.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/library/think/Route.php b/library/think/Route.php index cf640a4a..1d599a2d 100644 --- a/library/think/Route.php +++ b/library/think/Route.php @@ -1281,9 +1281,6 @@ class Route } elseif (strpos($url, '/')) { // [模块/控制器/操作] $path = explode('/', $url); - } elseif (false !== strpos($url, '=')) { - // 参数1=值1&参数2=值2... - parse_str($url, $var); } else { $path = [$url]; }