modified 优化接口性能

This commit is contained in:
Zhao 2021-07-27 14:52:27 +00:00 committed by Gitee
parent 5ea9234184
commit cdb21ae3a6

View File

@ -26,8 +26,9 @@ class ApiAuth {
$pathParam = [];
$pathArr = explode('/', $request->pathinfo());
for ($index = 0; $index < count($pathArr); $index += 2) {
if (isset($pathArr[$index + 1])) {
$pathArrLen = count($pathArr);
for ($index = 0; $index < $pathArrLen; $index += 2) {
if ($index + 1 < $pathArrLen) {
$pathParam[$pathArr[$index]] = $pathArr[$index + 1];
}
}