We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
InteractsWithRoute.php文件第91行在路径中只替换了/,在windows系统中文件分隔符是\,因而导致无法在windows上使用注解路由 解决方案: str_replace('/', '.', $filename) 替换为 str_replace(DIRECTORY_SEPARATOR, '.', $filename)
str_replace('/', '.', $filename)
str_replace(DIRECTORY_SEPARATOR, '.', $filename)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
InteractsWithRoute.php文件第91行在路径中只替换了/,在windows系统中文件分隔符是\,因而导致无法在windows上使用注解路由
解决方案:
str_replace('/', '.', $filename)
替换为
str_replace(DIRECTORY_SEPARATOR, '.', $filename)
The text was updated successfully, but these errors were encountered: