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.";
}