2013-07-17 118 views

回答

0

所有你所要做的就是打開一個文件,並寫入內容:

$fd = fopen("FILENAME","w"); 
fwrite($fd, $id); 
fclose($fd); 

看看PHP手冊:PHP Filesystem funcions

0
$filename = 'test.txt'; 
if ($handle = fopen($filename, "w")) { 
    fwrite($handle, $id); 
} 
fclose($handle); 
0

您可以用這種方式

$myFile = "testFile.txt"; 
$fh = fopen($myFile, 'w') or die("can't open file"); 
$stringData = $id; 
fwrite($fh, $stringData); 
fclose($fh); 
0

好的,你必須打開一個文件:

$datei_handle=fopen("part_of_url.txt",w); 

確保您使用正確的模式! 寫下你的東西,如果。

fwrite($datei_handle,$your_url_part); 

關閉文件。

fclose($datei_handle); 

另外檢查曼努埃爾。我認爲那裏有很好的解釋。 http://php.net/manual/de/function.fwrite.php

希望有所幫助。

相關問題