2015-04-25 72 views
-4

如何使用PHP將數據寫入文件?PHP將字符串數據寫入文件

這裏是需要編寫什麼一個例子:

$filename = 'test.txt'; 
    $keysize = '2048'; 
    $dname = 'www.domain.com'; 

test.txt文件的最終結果應該是這樣的

[ req ] 
bits = 2048 
domain_name = www.domain.com 
+0

使用'file_put_contents'。 – Barmar

+0

可能重複的[PHP從輸入文件到txt文件](http://stackoverflow.com/questions/14998961/php-write-file-from-input-to-txt) – FanaticD

+0

由於我的最後一條評論被刪除,我必須這樣說:'我們只能給你鏈接,但最後你必須閱讀/學習它!我們不能爲你學習!' – Rizier123

回答

-1

PHP腳本是:

<?php 
$output = "[ req ]"."<br>"; 
$output .= "bits = ".$keysize."<br>"; 
$output .= "domain_name = ".$dname."<br>"; 
$handle = fopen($filename , 'w'); 
$write = fwrite($handle, $output); 
fclose($handle); 
?> 
+0

這會直接將'
'寫入文件,而不是OP想要的新行 – enigma

+0

我猜不行,試試吧。 – Sagar