2014-10-31 52 views
0

我有這個在我的網站的根目錄下:不可能在PHP(Nginx的)來創建文本文件

$filename = "test01.txt"; //the name of our file. 
$content = "This is our test file"; //what we will be writing to our file. 
$strlength = strlen($content); //gets the length of our $content string. 
$create = fopen($filename, "w"); //uses fopen to create our file. 
$write = fwrite($create, $content, $strlength); //writes our string to our file. 
$close = fclose($create); //closes our file 
echo("File Created, Click <a href='$filename'> Here </a> to view it."); 

我只是想創建一個PHP腳本的文本文件,但它不工作。 你有什麼想法嗎? 謝謝

+0

你會得到什麼錯誤?你確定該文件夾是可寫的嗎? – Jerodev 2014-10-31 08:01:40

+0

你能看到該文件夾​​中的文件嗎? 也許href鏈接不工作... – Umair 2014-10-31 08:05:11

+0

當我刷新我的FTP時,我什麼都看不到。我得到0錯誤。我不明白是什麼問題 – user3797045 2014-10-31 08:07:25

回答

0

確保目錄是可寫的(組WWW),而你也可以使用函數file_put_contents

file_put_contents($創建,$內容);