PHP Append追加到文件
PHP附加到文件 您可以在fopen()函数使用a或a+模式将数据追加到文件中。让我们看一个简单的示例,将数据…
PHP附加到文件
您可以在fopen()函数使用a或a+模式将数据追加到文件中。让我们看一个简单的示例,将数据附加到data.txt文件中。
首先来看文件的数据。
data.txt
1
|
welcome to php file write
|
PHP附加到文件-fwrite()
PHPfwrite()函数用于将数据写入文件并附加到文件中。
例
1
2
3
4
5
6
7
8
|
<?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
1
|
welcome to php file write this is additional text appending data
|
类别:PHP 技巧、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!