尝试更改JSON,使其使用JSON_PRETTY_PRINT显示多行而不是单行,无法正常工作

时间:2016-03-05 18:48:05

标签: json parsing format

以下是我的结果:

// Pring data as json string.
$json = json_encode($diary_entrys);
$json_string = json_encode($json, JSON_PRETTY_PRINT);
print_r($json);

我希望它看起来像:

<h4>

我试图使用JSON_PRETTY_PRINT函数,但即使我认为我使用的是PHP 5.6,它也不喜欢它:

我的代码:

.panel-default > .panel-heading > .panel-title.collapsed > a{
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
  }


 .panel-default > .panel-heading > .panel-title:not(.collapsed) > a{
    color: #fff;
    background-color: red;
    border-color: red;
   }

1 个答案:

答案 0 :(得分:0)

没关系,我应该使用解码而不是编码,现在工作正常。