JSON 编码 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 和 包 - 如此处所述

注意MysqLPHP 5.5.0 起已弃用,请使用MysqLi扩展名代替http://php.net/manual/en/migration55.deprecated.php

解决方法

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