php教程

超轻量级php框架startmvc

php简单构造json多维数组的方法示例

更新时间:2020-03-20 09:09:46 作者:startmvc
本文实例讲述了php简单构造json多维数组的方法。分享给大家供大家参考,具体如下:php构

本文实例讲述了php简单构造json多维数组的方法。分享给大家供大家参考,具体如下:

php构造json多维数组其实很简单

下面列举了将mysqli的查询结果数组序列化为json的php代码如下


$res['result'] = "ok";
$res['msg'] = 'login';
$res['fileinfo'] = array();
while($stmt->fetch()){
 $fileinfo['fileid'] = $fileid;
 $fileinfo['name'] = $name;
 $fileinfo['fujianname'] = $fujianname;
 array_push($res['fileinfo'], $fileinfo);
}
echo json_encode($res);

输出的字符串如下:

{"result":"ok","msg":"login","fileinfo":[{"fileid":113,"name":"jishumingcheng","fujianname":"test.txt_test_20161005214223"},{"fileid":114,"name":"wodejishu","fujianname":"test.txt_test2_20161005230610"}]}

PS:这里再为大家推荐几款比较实用的json在线工具供大家参考使用:

在线JSON代码检验、检验、美化、格式化工具: http://tools.jb51.net/code/json

JSON在线格式化工具: http://tools.jb51.net/code/jsonformat

在线XML/JSON互相转换工具: http://tools.jb51.net/code/xmljson

json代码在线格式化/美化/压缩/编辑/转换工具: http://tools.jb51.net/code/jsoncodeformat

C语言风格/HTML/CSS/json代码格式化美化工具: http://tools.jb51.net/code/ccode_html_css_json

php 构造 json 多维数组