4

我想格式化回显 json_encode,目前的输出是

{"results":{"course":"CC140","books":{"book":[[{"id":"300862","title":"Building object-oriented software","isbn":"0070431965","borrowedcount":"6"}]]}}}

而我想像这样输出:

{
    "results": {
        "course": "CC140",
        "books": {
            "book": [
                [
                    {
                        "id": "300862",
                        "title": "Building object-oriented software",
                        "isbn": "0070431965",
                        "borrowedcount": "6"
                    }
                ]
            ]
        }
    }
}

这是生成 JSON 的代码

$temp = array();
    foreach ($my_array as $counter => $bc) {
        $temp['id'] = "$id[$counter]";
        $temp['title'] = "$title[$counter]";
        $temp['isbn'] = "$isbn[$counter]";
        $temp['borrowedcount'] = "$borrowedcount[$counter]";
        $t2[] = $temp;
    }

        $data = array(
  "results" => array(
    "course" => "$cc",
    "books" => array(
      "book" =>
      array(  
        $t2
      )
    )
  )
);
    echo json_encode($data);

任何帮助或指点将不胜感激,谢谢

添加这个

header('Content-type: application/json');
echo json_encode($data, JSON_PRETTY_PRINT);

格式化 JSON,但标头也超出了整个 HTML 文档

4

2 回答 2

19

我要给出的第一条建议是:不要。JSON 是一种数据格式。使用工具处理它,而不是尝试让您的服务器格式化它。

如果您要忽略这一点,请参阅该json_encode函数的手册,其中提供了一个选项列表,其中包括JSON_PRETTY_PRINT描述为在返回的数据中使用空格来格式化它。自 PHP 5.4.0 起可用。

因此,步骤是:

  1. 确保您使用的是 PHP 5.4.0 或更新版本
  2. json_encode($data, JSON_PRETTY_PRINT);
于 2013-02-25T12:31:31.357 回答
4

您可以json_encode($data, JSON_PRETTY_PRINT)在 php 5.4+中使用

在 php 5.3 及以下版本中,您可以尝试使用正则表达式对其进行格式化,但这不太安全(或者您可以使用库来编码 json)。

于 2013-02-25T12:31:30.907 回答