如下所示:header('content-type:application/json;charset=utf8');$results=array();while($row=mysql_fetch_assoc($resul
如下所示:
header('content-type:application/json;charset=utf8');
$results = array();
while ($row = mysql_fetch_assoc($result_query)) {
$results[] = $row;
}
if($results){
echo json_encode($results);
}else{
echo mysql_error();
}
将查询到的数组存放到一个新的数组中,然后返回json格式(查询部分的语句已经省略)。
以上这篇php将从数据库中获得的数据转换成json格式并输出的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
php 数据 json格式 输出