我是wamp環境,怎麼樣讓php的opendir函數可以接受相對路徑?

來源:互聯網
上載者:User
關鍵字 php wamp
問題描述:
需求:希望不暴露本地資訊,所以想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,路徑首碼 部分寫入設定檔嘛。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.