在PHP中,fwrite()
函数用于将数据写入文件。若要向文件追加内容,请将FILE_APPEND
常量作为第三个参数传递给fwrite()
函数。以下是一个示例:
<?php
$file = 'example.txt';
$content = 'This is a new line.\n';
// 追加内容到文件
$result = fwrite($file, $content, FILE_APPEND);
if ($result === false) {
echo 'Error writing to file.';
} else {
echo 'Content appended successfully.';
}
?>
在这个示例中,我们首先指定要写入的文件名(example.txt
),然后定义要追加的内容($content
)。接下来,我们使用fwrite()
函数将内容追加到文件中,并将FILE_APPEND
常量作为第三个参数传递。最后,我们检查fwrite()
函数的返回值以确定操作是否成功。