在我的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!"
}
]
}
答案 0 :(得分:1)
以下是解决方案:
答案 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}