0

我正在尝试使用 php 连接到我的网络中共享的目录(类似于 \remoteserver\mydir)。我尝试了函数 fopen 但它告诉我我没有连接权限,所以似乎该函数到达服务器但无法访问目录,这是可以理解的,因为该函数在输入中没有获取凭据. 我还尝试将远程目录设为网络单元 (Z:),但该功能仍然无法通过。目前我有两个环境,我可以测试一个是使用 EasyPhp,另一个是使用 WAMP。

你们中有人做过吗?

预先感谢 最好的

4

1 回答 1

0

Here is someone who explains some of it:

http://us.php.net/manual/en/function.opendir.php#90373

// Define the parameters for the shell command
$location = "\\servername\sharename";
$user = "USERNAME";    
$pass = "PASSWORD";
$letter = "Z";

// Map the drive
system("net use ".$letter.": \"".$location."\" ".$pass." /user:".$user." /persistent:no>nul 2>&1");

// Open the directory
$dir = opendir($letter.":/an/example/path")
于 2013-10-16T09:00:19.880 回答