路径转换方法:提高替换模式的兼容性。

This commit is contained in:
iyuu.cn 2020-04-03 12:18:10 +08:00
parent c4a8cef4ce
commit c90acbec6c

View File

@ -694,7 +694,7 @@ class AutoReseed
case 3: // 替换
foreach ($pathArray as $key => $val) {
if (strpos($path, $key)===0) { // 没用$path == $key判断是为了提高兼容性
return $val;
return $val . substr($path, strlen($key));
}
}
break;