我想在PHP中将结果数组转换为JSON格式。这是我的代码:
$row = mysql_fetch_array($result)
我想将$row
转换为JSON格式,并将JSON数据传递给jQuery插件。
答案 0 :(得分:54)
json_encode
在php>中可用5.2.0:
echo
json_encode
($row);
答案 1 :(得分:6)
$result = mysql_query($query) or die("Data not found.");
$rows=array();
while($r=mysql_fetch_assoc($result))
{
$rows[]=$r;
}
header("Content-type:application/json");
echo json_encode($rows);