问题:
您想要将 MySQL 查询的结果数组转换为PHP 中的 JSON 格式,最好使用与 PHP 5.2.0 以下版本兼容的解决方案。
解决方案:
对于 PHP 版本 5.2.0 和上图:
使用 json_encode() 函数:
<code class="php">echo json_encode($row);</code>
对于 5.2.0 以下的 PHP 版本:
使用 JSON PEAR 包中的类:
pear install JSON
<code class="php">include_once 'JSON.php';</code>
<code class="php">$json = new Services_JSON;</code>
<code class="php">echo $json->encode($row);</code>
以上是如何在 PHP(5.2.0 之前)中将 MySQL 结果数组转换为 JSON?的详细内容。更多信息请关注PHP中文网其他相关文章!