mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-07 07:12:47 +08:00
修正路由分组的路由规则大小写识别问题
This commit is contained in:
@@ -924,7 +924,7 @@ class Route
|
|||||||
} else {
|
} else {
|
||||||
$str = $key;
|
$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;
|
continue;
|
||||||
}
|
}
|
||||||
self::setOption($option);
|
self::setOption($option);
|
||||||
|
|||||||
Reference in New Issue
Block a user