gpt4 book ai didi

apache - 使用 php open dir 访问网络驱动器

转载 作者:行者123 更新时间:2023-12-02 22:00:34 24 4
gpt4 key购买 nike

我有一个闪存驱动器(或硬盘)连接到 Linksys 路由器并将其设置为无需登录即可访问。然后我在计算机(Windows 7 Proffesional x64)上设置网络驱动器。我试过 opendir(\192.168.1.1);但是我收到了这个错误

 Warning: opendir(\\192.168.1.1\s2,\\192.168.1.1\s2): The network name cannot be found.       (code: 67) in C:\xampp\htdocs\movies.php on line 4
Warning: opendir(\\192.168.1.1\s2): failed to open dir: No such file or directory in C:\xampp\htdocs\movies.php on line 4
Warning: readdir() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\movies.php on line 5

然后我在 php.net opendir 评论中尝试了一些技巧,但是当我尝试以我的帐户登录 apache 时,我遇到了错误:

Windows could not start the apache2.4 service on Local Computer Error 1069: The service did not start due to a logon failure.

PHP 代码:

$path = '\\192.168.1.1\\s2';
$dir = opendir($path);
while($temp = readdir($dir))echo $temp;

编辑:好吧,我让 apache 登录我为此目的专门创建的管理员帐户,但我仍然收到此错误:

Warning: opendir(\\192.168.1.1\s2\,\\192.168.1.1\s2\): The network name cannot be found. (code: 67) in C:\xampp\htdocs\movies.php on line 4

最佳答案

\192.168.1.1 是网络共享的无效地址。你试过\\192.168.1.1了吗?

在这两种情况下,您都应该转义 \ 并将地址写为带引号的正确字符串。

此外,\\192.168.1.1 本身不是“有效文件夹”,您必须指定此 IP 地址下的网络共享之一。

也就是说,您应该使用 opendir("\\\\192.168.1.1\\share")

关于apache - 使用 php open dir 访问网络驱动器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17002507/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com