对于 Ubuntu 上的 Windows 共享,PHP is_file 返回 false(错误)
Ubuntu 服务器,PHP 5.3,通过 Samba 连接到 Windows 服务器共享。
我正在使用 file_exists() 来检查 Windows 计算机上文件的可用性。尽管文件路径确实存在,但它返回 false。同时,完全相同的文件路径上的 file_get_contents() 工作正常。
我想知道这是否是权限问题,因为我在配置 Windows 共享上的文件权限时遇到问题(它说我无权更改它们的权限)。当我通过Nautilus查看权限时,它说用户和组都是root,拥有755权限。我想将组更改为 www-data,但似乎无法做到。
Ubuntu server, PHP 5.3, connected via Samba to Windows server share.
I am using file_exists() to check for availability of file on Windows machine. It returns false, although the filepath does exist. Meanwhile, file_get_contents() on the exact same filepath works fine.
I'm wondering if it's a permission issue, since I'm having trouble configuring permissions of the files on the Windows share (it says I don't have permission to change permissions on them). When I look at the permissions through Nautilus, it says the user and group are both root, with 755 rights. I'd like to change the group to www-data, but can't seem to do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可能是目录分隔符。尝试
preg_replace('%(\\|\)%', '/', $path)
It could be directory seperators. Try
preg_replace('%(\\|\)%', '/', $path)