用PHP创建多数组Json文件

时间:2016-03-24 09:31:55

标签: php json

在我的Web应用程序中,我正在使用Json。我需要在PHP中创建以下格式的Json文件。

{
    "title": "A cool blog post",
    "clicks": 4000,
    "children": null,
    "published": true,
    "comments": [
        {
            "author": "Mister X",
            "message": "A really cool posting"
        },
        {
            "author": "Misrer Y",
            "message": "It's me again!"
        }
    ]
}

2 个答案:

答案 0 :(得分:1)

以下是解决方案:

  • 打开Goog​​le
  • 输入PHP JSON
  • 点击Enter
  • 点击第一个结果
  • 将PHP示例中的值替换为json_encode和您自己的值

答案 1 :(得分:0)

json_encode将PHP数组编码为JSON数组。

正如该链接上的例子所示:

<?php
$arr = array('a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5);

echo json_encode($arr);

// {"a":1,"b":2,"c":3,"d":4,"e":5}