PHP json_decode多个对象(订单)

时间:2016-09-21 08:31:38

标签: php arrays json

我必须输入所有订单中的以下字符串:

 HTML = document.getElementById('notizie').innerHTML;
 $(news).each(function (item) {
      HTML += "<div class=\"item container\"></div>";
      HTML += "<h4>" + news[item].Title + "</h4>";
      HTML += "<p>" + news[item].Text + "</p>";
      HTML += "<div class=\"post\"></div>";
 });
document.getElementById('notizie').innerHTML = HTML;

如何使用所有元素解码每个订单? 输出来自一个json编码的数组。

1 个答案:

答案 0 :(得分:2)

您可以使用json_decode

$nl = str_replace("\n", '\n',getStringWithNewLineCharacter());