gpt4 book ai didi

php - 如何用 PHP 中的新内容覆盖文件内容?

转载 作者:IT王子 更新时间:2023-10-29 00:52:39 25 4
gpt4 key购买 nike

我尝试使用 fopen,但我只设法将内容附加到文件末尾。是否可以用 PHP 中的新内容覆盖所有内容?

最佳答案

使用file_put_contents()

file_put_contents('file.txt', 'bar');
echo file_get_contents('file.txt'); // bar
file_put_contents('file.txt', 'foo');
echo file_get_contents('file.txt'); // foo

或者,如果您遇到 fopen() 问题您可以使用 ww+ 模式:

'w' Open for writing only; place the file pointer at the beginning of the file and truncate the file to zero length. If the file does not exist, attempt to create it.

'w+' Open for reading and writing; place the file pointer at the beginning of the file and truncate the file to zero length. If the file does not exist, attempt to create it.

关于php - 如何用 PHP 中的新内容覆盖文件内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7551132/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com