gpt4 book ai didi

php - 如何将数据库表保存在文本文件中?以及如何指定文本文件的格式?

转载 作者:行者123 更新时间:2023-11-30 00:28:15 24 4
gpt4 key购买 nike

我正在使用脚本将数据库表保存在 .txt 文件中。该脚本运行完美。表字段如下所示:

8,c.s.e,computer ,9,0
9,m.c.a,b.a. in hindi ,10,0

但我希望它是这样的-:

{ "table_name": [
["8","c.s.e","computer","9","0"],
["9","m.c.a","computer","10","0"],
]
}

这是我的脚本:

    $fh = fopen('db.txt', 'w');
$con = mysql_connect("localhost","root","");
mysql_select_db("dot", $con);
$result = mysql_query("SELECT * FROM class_master");
while ($row = mysql_fetch_array($result)) {
$num = mysql_num_fields($result) ;
$last = $num - 1;
for($i = 0; $i < $num; $i++) {
fwrite($fh, $row[$i]);
if ($i != $last) {
fwrite($fh, ",");
}
}
fwrite($fh, "\n");
}
fclose($fh);

最佳答案

在您的代码中实现此行

fwrite($fh, json_encode($row[$i]));  

关于php - 如何将数据库表保存在文本文件中?以及如何指定文本文件的格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22705216/

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