在PHP 中對網路磁碟機上的檔案存取進行故障排除
問題:在執行Xamppp 的Windows伺服器上使用PHP 時,當Apache 作為服務運作時,存取使用特定憑證裝載的網路磁碟機上的檔案會失敗。
調查:
用於檔案存取的程式碼:
<code class="php"><?php echo shell_exec("whoami"); fopen('X:\text.txt',"r"); ?></code>
導致下列錯誤:
theservername\thelocaluser Warning: fopen(X:\text.txt) [function.fopen]: failed to open stream: No such file or directory
導致下列錯誤:
導致下列錯誤:<code class="php">fopen('\\server\share\text.txt', 'r');</code>
解決方案:
出現此問題的原因是網路映射驅動器只能由個人用戶訪問,並且無法訪問被服務利用。相反,應直接使用UNC 路徑:以上是使用 Xampp 時如何解決 PHP 中網路磁碟機上的檔案存取問題?的詳細內容。更多資訊請關注PHP中文網其他相關文章!