is_dir() 包含非英文字符
在 php 中,is_dir() 函数会忽略包含非英文字符的目录。 IE。 is_dir("C:\ekşi") 根据函数不是目录,但它是。对于这种情况有什么解决办法吗?谢谢
In php, is_dir() function omits directories which contains non-english characters. ie. is_dir("C:\ekşi") is not directory according to the function but it is. Is there any solutions to this case? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可悲的是,这不是错误。直到 PHP 6,unicode 字符集才支持此类操作。
参考:http://www.php.net/manual/en/function .scandir.php#96140
Sadly, this is no bug. Until PHP 6, no unicode caharcter support for this kind of operations.
Reference: http://www.php.net/manual/en/function.scandir.php#96140