mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-01 20:52:48 +08:00
修正路由分组的路由规则大小写识别问题
This commit is contained in:
@@ -924,7 +924,7 @@ class Route
|
||||
} else {
|
||||
$str = $key;
|
||||
}
|
||||
if (is_string($str) && $str && 0 !== strpos(str_replace('|', '/', $url), $str)) {
|
||||
if (is_string($str) && $str && 0 !== stripos(str_replace('|', '/', $url), $str)) {
|
||||
continue;
|
||||
}
|
||||
self::setOption($option);
|
||||
|
||||
Reference in New Issue
Block a user