我在商業網絡上設置了網絡服務器。我正在使用PHP來創建一個文件,並且我想將它寫入網絡上的本地客戶端共享文件夾。當我從客戶端ping通時,我收到來自Web服務器的響應。當我從網絡服務器ping時,我得到了客戶端的響應。這是我的代碼。我收到權限錯誤。任何想法可能導致什麼?路徑是否正確?我如何制定路徑?如何在網絡客戶端上從網絡服務器上創建文件
$fileName = "\\\\7PD01-2012.payday.local\\PTBurnJobs\\file.txt";
var_dump($fileName);
if (($myfile = fopen($fileName, "w+")) === false) { //open the file
//if unable to open throw exception
throw new RuntimeException("Could Not Open File Location.");
}
foreach($arr as $line){
fwrite($myfile, $line . PHP_EOL);
}
fclose($myfile);
在網絡服務器上創建文件然後將其傳輸到客戶端會更謹慎嗎?我會怎麼做?
你有沒有在這個地方? – RiggsFolly