問題:
您想要將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 版本:
利用🎜>利用PEAR 包中的JSON 類別:
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中文網其他相關文章!