mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-07 15:12:48 +08:00
自动请求缓存不区分大小写
This commit is contained in:
@@ -1542,7 +1542,7 @@ class Request
|
|||||||
$key = call_user_func_array($key, [$this]);
|
$key = call_user_func_array($key, [$this]);
|
||||||
} elseif (true === $key) {
|
} elseif (true === $key) {
|
||||||
foreach ($except as $rule) {
|
foreach ($except as $rule) {
|
||||||
if (0 === strpos($this->url(), $rule)) {
|
if (0 === stripos($this->url(), $rule)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user