我使用的是Windows 7
如果我有一个包含文件é.txt的目录,并且我启动了该目录中的内置web服务器
php -S localhost:8000然后,使用我的web浏览器请求URL
http://localhost:8000/é.txtweb服务器响应
Not Found
The requested resource /%C3%A9.txt was not found on this server.发布于 2015-10-18 03:26:26
PHP的Windows文件系统支持被破坏了-它不能正确地转换为本机编码。
请参阅How do I use filesystem functions in PHP, using UTF-8 strings?
https://stackoverflow.com/questions/33150112
复制相似问题