我正在动态收到一个JSON字符串,如下所示:
{“post”:[{“id”:“11”,“body”:“”,“image”:“images / rose.png”,“stamp”:“2013-11-04 14:50 :11“}}}
我正在尝试按照以下方式打印此JSON字符串:
{
"post": [
{
"id": "11",
"body": "",
"image": "images/rose.png",
"stamp": "2013-11-04 14:50:11"
}
]
}
所以,我尝试了以下代码(仅用于演示目的):
<?php
$str = '{ "post": [ { "id": "11", "body": "", "image": "images\/rose.png", "stamp": "2013-11-04 14:50:11" } ] }';
$obj = json_decode($str);
echo json_encode($obj, JSON_PRETTY_PRINT);
它只输出未格式化的JSON字符串:
{“post”:[{“id”:“11”,“body”:“”,“image”:“images / rose.png”,“stamp”:“2013-11-04 14:50 :11“}}}
但是当我在json_encode()
语句上面添加以下行时,它会按预期工作。
header('Content-Type: text/plain');
可能导致此问题的原因是什么?当Content-Type
为text/html
时,为什么它无效?
答案 0 :(得分:19)
JSON_PRETTY_PRINT
使用空格来格式化JSON。当它显示为HTML时,将忽略空格。如果要保留格式,请将JSON包装在<pre>
标记中。
例如:
<?php
$str = '{ "post": [ { "id": "11", "body": "", "image": "images\/rose.png", "stamp": "2013-11-04 14:50:11" } ] }';
$obj = json_decode($str);
$json = json_encode($obj, JSON_PRETTY_PRINT);
printf("<pre>%s</pre>", $json);
如果您不想使用<pre>
标记,那么您还可以在包含JSON的任何元素上使用CSS属性white-space: pre
。
答案 1 :(得分:6)
您使用此标题:
header('Content-Type: application/json; charset=utf-8');