Home > php教程 > php手册 > body text

PHP生成嵌套JSON解决思路

WBOY
Release: 2016-06-13 09:32:42
Original
1659 people have browsed it

   PHP生成嵌套JSON

  ({

  "aa": [

  {

  "Id": "0",

  "title": "标题",

  },

  {

  "Id": "1",

  "title": "标题",

  }

  ],

  "bb":[

  {

  ...

  },

  {

  ....

  }

  ]

  })

  PHP如何生成这种嵌套的JSON

  ------解决方案--------------------

  /** Json数据格式化

  * @param Mixed $data 数据

  * @param String $indent 缩进字符,默认4个空格

  * @return JSON

  */

  function jsonFormat($data, $indent=null){

  // 对数组中每个元素递归进行urlencode操作,保护中文字符

  array_walk_recursive($data, 'jsonFormatProtect');

  // json encode

  $data = json_encode($data);

  // 将urlencode的内容进行urldecode

  $data = urldecode($data);

  // 缩进处理

  $ret = '';

  $pos = 0;

  $length = strlen($data);

  $indent = isset($indent)? $indent : ' ';

  $newline = "\n";

  $prevchar = '';

  $outofquotes = true;

  for($i=0; $i

  $char = substr($data, $i, 1);

  if($char=='"' && $prevchar!='\\'){

  $outofquotes = !$outofquotes;

  }elseif(($char=='}' ------解决方案-------------------- $char==']') && $outofquotes){

  $ret .= $newline;

  $pos --;

  for($j=0; $j

  $ret .= $indent;

  }

  }

  $ret .= $char;

  if(($char==',' ------解决方案-------------------- $char=='{' ------解决方案-------------------- $char=='[') && $outofquotes){

  $ret .= $newline;

  if($char=='{' ------解决方案-------------------- $char=='['){

  $pos ++;

  }

  for($j=0; $j

  $ret .= $indent;

  }

  }

  $prevchar = $char;

  }

  return $ret;

  }

  /** 将数组元素进行urlencode

  * @param String $val

  */

  function jsonFormatProtect(&$val){

  if($val!==true && $val!==false && $val!==null){

  $val = urlencode($val);

  }

  }

  header('content-type:application/json;charset=utf8');

  $arr = array(

  'aa' => array(

  array(

  'Id' => 0,

  'title' => '标题'

  ), array( 'Id' => 1, 'title' => '标题' ), ), 'bb' => array( array( 'Id' => 2, 'title' => '标题' ), array( 'Id' => 3, 'title' => '标题' ), ));echo jsonFormat($arr);{ "aa":[ { "Id":"0", "title":"标题" }, { "Id":"1", "title":"标题" } ], "bb":[ { "Id":"2", "title":"标题" }, { "Id":"3", "title":"标题" } ]}

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!