問題描述:
需求:希望不暴露本地資訊,所以想opendir()函數可以接受相對路徑。
做過的功課:搜尋過一個使用系統命令列的net use 指令將本地資源地圖為網路驅動的方法。
// Define the parameters for the shell command$location = "\\servername\sharename";$user = "USERNAME";$pass = "PASSWORD";$letter = "Z";// Map the drivesystem("net use ".$letter.": \"".$location."\" ".$pass." /user:".$user." /persistent:no>nul 2>&1");// Open the directory$dir = opendir($letter.":/an/example/path")
還有這樣的
system('net use K: \\192.168.10.10\pictures /user:username password /persistent:no');$share = opendir('\\\\192.168.10.10\\pictures);
依舊存在疑問:
這個方法我還有很多不明白的地方,以至於從未成功開啟過這個服務。
1這個$letter是什嗎?系統提示我只能填一個字元,否則不規範。
2$location怎麼填?以及將來如果搬上外掛式主控件伺服器了,$location又該怎麼填?
3帳號密碼是什嗎?我是一個本機伺服器,地址就是127.0.0.1,或者叫localhost,從來沒有設定過帳號密碼,但是這又是必填項。
我全無頭緒,還請大家幫忙詳細解答一下。
回複內容:
問題描述:
需求:希望不暴露本地資訊,所以想opendir()函數可以接受相對路徑。
做過的功課:搜尋過一個使用系統命令列的net use 指令將本地資源地圖為網路驅動的方法。
// Define the parameters for the shell command$location = "\\servername\sharename";$user = "USERNAME";$pass = "PASSWORD";$letter = "Z";// Map the drivesystem("net use ".$letter.": \"".$location."\" ".$pass." /user:".$user." /persistent:no>nul 2>&1");// Open the directory$dir = opendir($letter.":/an/example/path")
還有這樣的
system('net use K: \\192.168.10.10\pictures /user:username password /persistent:no');$share = opendir('\\\\192.168.10.10\\pictures);
依舊存在疑問:
這個方法我還有很多不明白的地方,以至於從未成功開啟過這個服務。
1這個$letter是什嗎?系統提示我只能填一個字元,否則不規範。
2$location怎麼填?以及將來如果搬上外掛式主控件伺服器了,$location又該怎麼填?
3帳號密碼是什嗎?我是一個本機伺服器,地址就是127.0.0.1,或者叫localhost,從來沒有設定過帳號密碼,但是這又是必填項。
我全無頭緒,還請大家幫忙詳細解答一下。
這是 SMB 共用目錄(也就是 windows 的檔案、目錄共用),這裡 $letter 是 Windows 的盤符,可開啟 Guest 帳號,帳號就是 guest 密碼不設就是空串。
如果擔心部署的伺服器情況不同,可將 IP,路徑首碼 部分寫入設定檔嘛。