gpt4 book ai didi

php - 使用 php 创建文件并向其添加文本

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:39:10 25 4
gpt4 key购买 nike

我正在尝试使用 php 创建一个文本文件,该值是通过数据库调用获得的

$result = mysql_query("SELECT code FROM topic_master");
while ($row = mysql_fetch_array($result)) {
$x1=$row{'code'};
exec("printf $x1 >> code.txt");
}

但该值并未插入到code.txt 中。 code.txt 中只插入了 array(code)。实际上 $row{'code'} 有“#xy { } () %”。如何将值写入 txt 文件。

最佳答案

这将解决您的问题:

$result = mysql_query("SELECT code FROM topic_master");
while ($row = mysql_fetch_array($result)) {
file_put_contents('code.txt',$row['code'],FILE_APPEND);//FILE_APPEND is necessary
}

关于php - 使用 php 创建文件并向其添加文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18642836/

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