我想創建一個PHP文件和文件來看,他們得到錯誤後文件(未能打開流)。而我的PHP代碼: -PHP創建
<?php
$fileLocation = getenv("DOCUMENT_ROOT") . "/myfile.txt";
$file = fopen($fileLocation,"w");
$content = "Your text here";
fwrite($file,$content);
fclose($file);
?>
如何解決錯誤。
您應該檢查您是否有權寫入文檔根目錄。通常,您在日誌文件夾或庫文件夾中創建文件,而不是直接在文檔根目錄中創建文件。如果(is_writeable(getenv('DOCUMENT_ROOT'))fopen($ fileLocation,'w'); else die('Permission denied'); – mocanuga 2014-11-08 15:47:36
將這些行添加到您的php文件'error_reporting(E_ALL); ini_set(「display_errors」, 1);'找出錯誤是什麼 – andrew 2014-11-08 15:50:17