PHP opendir 在相对路径下工作正常,但在绝对路径下工作不正常?
问题是这样的: 在一个地方,我使用相对路径加载特定文件夹中所有文件的名称:
if ($handle = opendir('images/uploads/form_id_1103/1'))
这工作正常,但如果我将其更改为:
if ($handle = opendir('/images/uploads/form_id_1103/1'))
我收到错误:没有这样的文件或目录 -只是提一下,图像文件夹位于根目录中,因此 /images 应该有效
同时,如果我使用以下命令显示该(“不存在”)文件夹中的图像
<img src="/images/uploads/form_id_1103/1/test.jpg">
它工作正常并显示图像。
我无法使用相对路径,因为我正在使用 Apache 的 mod_rewrite 将 URL 转换为 SEO 友好的 URL。
Here is the problem:
In one place I'm using relative path to load names of all files in certain folder:
if ($handle = opendir('images/uploads/form_id_1103/1'))
This is working fine, but if I change it to:
if ($handle = opendir('/images/uploads/form_id_1103/1'))
I get an error: No such file or directory in - just to mention, images folder is in the root, so /images should be valid
In the meantime, if I show an image from that ("non existing") folder with
<img src="/images/uploads/form_id_1103/1/test.jpg">
it works fine and shows the image.
I cannot use relative path, as I'm using Apache's mod_rewrite to transform URLs to SEO friendly ones.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您将 Web URL 与文件系统路径混淆了。 PHP 的基于文件的函数不能与 URL 一起使用,除非它们是完整的+绝对的
http://blah/blah/blah/blah
)。如果你想使用绝对路径,你需要弄清楚你的图像在服务器上的真实路径。会是这样的You're confusing web URLs with file system paths. PHP's file-based functions dont' work with URLs, unless they're full+absolute
http://blah/blah/blah/blah
). You need to figure out the real path for your image on the server if you want to use an absolute one. It'd be something like如果在 Linux 服务器上以 / 开头路径。它将被处理,就像您从 Linux 安装的根目录打开目录一样。与当前 PHP 文件无关。路径开头的点表示当前目录。
If you start the path with a / on a Linux server. it will be processed as if you open the directory from the root of the linux installation. not relative to the current PHP file. a dot on the start of a path means the current directory.