PHP opendir 在相对路径下工作正常,但在绝对路径下工作不正常?

发布于 2024-12-11 15:14:52 字数 524 浏览 0 评论 0原文

问题是这样的: 在一个地方,我使用相对路径加载特定文件夹中所有文件的名称:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不爱素颜 2024-12-18 15:14:52

您将 Web URL 与文件系统路径混淆了。 PHP 的基于文件的函数不能与 URL 一起使用,除非它们是完整的+绝对的http://blah/blah/blah/blah)。如果你想使用绝对路径,你需要弄清楚你的图像在服务器上的真实路径。会是这样的

/home/site/example.com/docroot/images/etc...
                               ^---url starts here.

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

/home/site/example.com/docroot/images/etc...
                               ^---url starts here.
揪着可爱 2024-12-18 15:14:52

如果在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文