我在 Windows 7 上有 php,我正在尝试连接到 Linux 上的 Samba 共享文件夹,但没有成功。
我正在使用这段代码:
// Map the drive
system('net use Y: "\\\\linuxIPaddress\Shared_folder password /user:username /persistent:no>nul 2>&1');
// Open the directory
$dir = "Y:/TMP";
if (is_dir($dir)) {
if (opendir($dir)) {
print "able to access directory tree.";
}
} else {
print "not access tree.";
}