Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial php数组输出这样的json

php数组输出这样的json

Jun 23, 2016 pm 01:51 PM
json php array output

请问如何输出这样的json ?



{
    data = (
                {
"article_url" = "/disease/item/1";
"create_time" = "2014-08-11 11:38:58";
"knowledge_id" = 1;
title = "\U6d4b\U8bd5\U9057\U4f20\U75c5\U5e931";
},
                {
"article_url" = "/disease/item/3";
"create_time" = "2014-07-22 15:38:28";
"knowledge_id" = 3;
title = "\U6211\U7684\U9057\U4f20\U77e5\U8bc6";
 }
);
    errcode = 0;
    errdesc = "";
}

其中 ,来源于表的数据
"article_url" = "/disease/item/1";
"create_time" = "2014-08-11 11:38:58";
"knowledge_id" = 1;
title = "\U6d4b\U8bd5\U9057\U4f20\U75c5\U5e931";

表的循环读取程序,

      $i=0;
$listarr=array();
while($db->ROW())
{
$listarr[$i]["article_url"]=$ROW[article_url];
$listarr[$i]["create_time"]=$ROW[create_time];
$listarr[$i]["knowledge_id"]=$ROW[knowledge_id];
$listarr[$i]["titlee"]=$ROW[title];
$i++;

}
如何通过这段 while程序输出最上面的json ?
请大家帮看看。


回复讨论(解决方案)

上面是组装的吧,代码给的不全。  errcode = 0;
    errdesc = ""; 这两个哪里来的?

你的表数组没有这个值  errcode = 0;    errdesc = "";
你可以打印原数组看看
print_r($listarr);

这个是数组合并的。主要是这部分的内容


data = (
                 {
 "article_url" = "/disease/item/1";
 "create_time" = "2014-08-11 11:38:58";
 "knowledge_id" = 1;
 title = "\U6d4b\U8bd5\U9057\U4f20\U75c5\U5e931";
 },
                 {
 "article_url" = "/disease/item/3";
 "create_time" = "2014-07-22 15:38:28";
 "knowledge_id" = 3;
 title = "\U6211\U7684\U9057\U4f20\U77e5\U8bc6";
  }
 );

json?有??的?法,我想你大概意思是

{    "data":[        {            "article_url":"/disease/item/1",            "create_time":"2014-08-11 11:38:58",            "knowledge_id":"1",            "title":"title1"        },        {            "article_url":"/disease/item/3",            "create_time":"2014-08-11 11:38:58",            "knowledge_id":"1",            "title":"title3"        }    ],    "errcode":"0",    "errdesc":""}
Copy after login


/** 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<=$length; $i++){            $char = substr($data, $i, 1);            if($char=='"' && $prevchar!='\\'){              $outofquotes = !$outofquotes;          }elseif(($char=='}' || $char==']') && $outofquotes){              $ret .= $newline;              $pos --;              for($j=0; $j<$pos; $j++){                  $ret .= $indent;              }          }            $ret .= $char;                    if(($char==',' || $char=='{' || $char=='[') && $outofquotes){              $ret .= $newline;              if($char=='{' || $char=='['){                  $pos ++;              }                for($j=0; $j<$pos; $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');  $result = array(	'data' => array(		array(			'article_url' => '/disease/item/1',			'create_time' => '2014-08-11 11:38:58',			'knowledge_id' => 1,			'title' => 'title1'		),		array(			'article_url' => '/disease/item/3',			'create_time' => '2014-08-11 11:38:58',			'knowledge_id' => 1,			'title' => 'title3'		),	),	'errcode' => 0,	'errdesc' => '');echo jsonFormat($result);
Copy after login

如果不需要格式?,可以
echo jsonFormat($result);
改?
echo json_encode($result);
即可。

上面的function都可以不用了。

搞定,谢谢。

如果不需要格式?,可以
echo jsonFormat($result);
改?
echo json_encode($result);
即可。

上面的function都可以不用了。

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles