PHP追加檔案


可以通過在fopen()函式中使用aa+模式將資料追加到檔案中。 下面來看看一個簡單的例子,將資料附加(追加)到data.txt檔案中。

讓我們先看看檔案(data.txt)中的資料。

welcome to php file write

PHP附加到檔案 - fwrite()函式

PHP fwrite()函式用於將資料寫入和追加到檔案中。

範例

<?php  
$fp = fopen('data.txt', 'a');//opens file in append mode  
fwrite($fp, ' this is additional text ');  
fwrite($fp, 'appending data');  
fclose($fp);  

echo "File appended successfully";  
?>

執行上面程式碼輸出結果(檢視data.txt檔案中的內容)如下 -

welcome to php file write this is additional text appending data