本地主机:我希望我的 .php 访问另一个驱动器中的文件夹

发布于 2024-11-19 01:13:54 字数 189 浏览 2 评论 0原文

本地主机:我希望我的 .php 访问另一个驱动器中的文件夹。

起初我以为可以用 Apache Alias 来完成,但现在我不知道了。

D:/Appserv/www/x/y/file.php

我希望 .php 读取以下内容:

E:/foldie/

localhost: I want my .php to access a folder in another drive.

At first I thought it could be done with Apache Alias, but now I don't know.

D:/Appserv/www/x/y/file.php

I want that .php to read the contents of:

E:/foldie/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

短叹 2024-11-26 01:13:54

嗯,Alias 指令的语法非常简单:

Description: Maps URLs to filesystem locations
Syntax:      Alias URL-path file-path|directory-path
Context:     server config, virtual host
Status:      Base
Module:      mod_alias

...并且包含的​​示例阐明了其余部分:

Alias /image /ftp/pub/image

您已将其标记为 PHP 的事实表明您要么尝试在 内设置 Alias .htaccess 文件(这是根本不允许的,它需要进入主服务器配置)或将该指令误解为与文件系统符号链接有关(事实并非如此,它只影响 HTTP 请求)。

只需在您尝试使用的任何 PHP 函数中输入完整路径(包含驱动器号和所有内容),如果您使用反斜杠,请确保将它们加倍:

foreach( glob('E:/foldie/*') as $item ){
}
foreach( glob('E:\\foldie\\*') as $item ){
}

Well, the syntax of the Alias directive is quite straightforward:

Description: Maps URLs to filesystem locations
Syntax:      Alias URL-path file-path|directory-path
Context:     server config, virtual host
Status:      Base
Module:      mod_alias

... and the included example clarifies the rest:

Alias /image /ftp/pub/image

The fact that you've tagged this as PHP suggests that you are either trying to set Alias inside an .htaccess file (which is simply not allowed, it needs to go in the main server config) or misinterpreting the directive as having something to do with file system symlinks (which is not, it only affect HTTP requests).

Just type the full path (with drive letter and all) in whatever PHP function you are trying to use and, if you use back slashes, make sure you double them:

foreach( glob('E:/foldie/*') as $item ){
}
foreach( glob('E:\\foldie\\*') as $item ){
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文