gpt4 book ai didi

javascript - 如何使用php编辑txt文件内容?

转载 作者:行者123 更新时间:2023-11-30 12:55:03 24 4
gpt4 key购买 nike

我想将用户对我网站的评论存储在一个 txt 文件中。所以..我想知道如何使用 php 编辑 txt 文件内容。

我的 txt 文件内容是这样的...

uid=5
comment="Hello world"
time="2013:11:21:xx:xx"

uid=6
comment="Test comment"
time="2013:11:21:xx:xx"

所以..如果我想编辑 uid=5 的评论,我该如何使用 php 来完成。或者告诉我一个更好的方法,内容应该放在文本文件中以简化此任务。

我不喜欢使用数据库来存储我的评论。请有人帮我解决这个问题。谢谢

最佳答案

$txt_file = file_get_contents('path/to/file');
$rows = explode("\n", $txt_file); //you get all rows here
foreach ($rows as $row => &$data) {
if (strstr($data, 'uid=5') !== FALSE) {
//it means the following line contains your comment,
//work with it as string
$rows[$row + 1] = "comment=" . $newComment;
}
$data = $data . "\n";
}
file_put_contents('path/to/file', $rows);

关于javascript - 如何使用php编辑txt文件内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19499348/

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