你可以在fopen()函数中使用a或a +模式将数据追加到文件中。让我们看一个简单的示例, 将数据附加到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
评论前必须登录!
注册