我有一个.php脚本,它将一个值传递给.txt文件,这个唯一的问题是它附加了值,所以如果当前值是1那么如果我添加2那么文本文件将如下所示12.如何停止这样做,所以如果当前值为1并且我加2则文本文件中的值为2.
我的php函数将值传递给.txt文件:
<?php
$filename = "iPhoneAuctionBids.txt";
$content = file_get_contents($filename);
$content .= $priceVariable;
file_put_contents($filename, $content);
?>
答案 0 :(得分:1)
不要获取该文件的内容并添加到该文件中,只需写入该文件即可覆盖已存在的文件
<?php
$filename = "iPhoneAuctionBids.txt";
file_put_contents($filename, $priceVariable);
?>