我的问题是我需要在我的PHP文件(位于WAMP本地)上访问一个远程目录(位于服务器上)。
我尝试了如下的scandir()功能
print_r(scandir('\\\\[IP]\[path...]'));
但这给了我错误
Warning: scandir(\\[IP]\[path...],\\[IP]\[path...]): Unknown username or password. (code: 1326) in C:\wamp64\www\[file].php on line 14
Warning: scandir(\\[IP]\[path...]): failed to open dir: Invalid argument in C:\wamp64\www\[file].php on line 14
Warning: scandir(): (errno 22): Invalid argument in C:\wamp64\www\[file].php on line 14"
我显然需要登录名和密码才能访问目录?但是我可以在PC上访问而无需登录/密码(我也要说这不是我的网络,也不是我的PC)。 如果仅是登录名/密码问题,应该在哪里输入? 如果不是出于上述原因,可能是什么问题?
编辑: 我通过使用“ file://”路径摆脱了此错误消息,但是现在我还有其他错误消息
Warning: scandir(): remote host file access not supported, file://[ID]/[path] 2011 in C:\wamp64\www\[file].php on line 14
Warning: scandir(file://[ID]/[path]): failed to open dir: no suitable wrapper could be found in C:\wamp64\www\[file].php on line 14
Warning: scandir(): (errno 2): No such file or directory in C:\wamp64\www\[file].php on line 14