gpt4 book ai didi

php - JSON 编码 MySQL 结果

转载 作者:bug小助手 更新时间:2023-10-28 01:26:00 26 4
gpt4 key购买 nike

如何将 json_encode() 函数用于 MySQL 查询结果?我需要遍历行还是可以将其应用于整个结果对象?

最佳答案

$sth = mysqli_query($conn, "SELECT ...");
$rows = array();
while($r = mysqli_fetch_assoc($sth)) {
$rows[] = $r;
}
print json_encode($rows);

函数 json_encode 需要 PHP >= 5.2 和 php-json 包 - 如上所述 here

注意:mysql 自 PHP 5.5.0 起已弃用,请改用 mysqli 扩展名 http://php.net/manual/en/migration55.deprecated.php .

关于php - JSON 编码 MySQL 结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/383631/

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