我想解码 json 字符串,包括 PHP 中的数组和对象。当我解码时
$array = json_decode($json, true);
print_r($array);
它返回 NULL。让我知道,在 PHP 中解码 json 的方法。这是我的 json 字符串。
{
success: 1,
message: "Successful!",
save_date: "2013-09-11 04:09:26",
test: [
{
test_id: "1",
test_date: "2013-09-12",
test_name: "Test 1"
},
{
test_id: "2",
test_date: "2013-09-11",
test_name: "Test 2"
}
]
}