PHP 写入文件
PHP fwrite() 和 fputs() 函数用于将数据写入文件。要将数据写入文件,您需要使用 w、r+、w+、x、x+、c 或 c+ 模式。
PHP 写入文件 – fwrite()
PHP fwrite() 函数用于将字符串的内容写入文件。
语法
int fwrite ( resource handle , stringstring [, int $length ] )
示例
<?php
fp = fopen('data.txt', 'w');//opens file in write-only mode
fwrite(fp, 'welcome ');
fwrite(fp, 'to php file write');
fclose(fp);
echo "File written successfully";
?>
输出:data.txt
welcome to php file write
PHP覆盖文件
如果您再次运行上述代码,它将擦除文件的先前数据并写入新数据。让我们看看仅将新数据写入data.txt文件的代码。
<?php
fp = fopen('data.txt', 'w');//opens file in write-only mode
fwrite(fp, 'hello');
fclose($fp);
echo "File written successfully";
?>
输出:data.txt
hello
PHP追加到文件
如果您使用 追加 模式,它不会擦除文件的数据。它会在文件末尾写入数据。访问下一页以查看将数据追加到文件的示例。