我在文件list.txt中有以下JSON:
{
"bgates":{"first":"Bill","last":"Gates"},
"sjobs":{"first":"Steve","last":"Jobs"}
}
如何使用PHP将“bross”:{“first”:“Bob”,“last”:“Ross”}添加到我的文件?
这里是我到目前为止:
$user = "bross";
$first = "Bob";
$last = "Ross";
$file = "list.txt";
$json = json_decode(file_get_contents($file));
$json[$user] = array("first" => $first, "last" => $last);
file_put_contents($file, json_encode($json));
?>
这给我一个致命错误:不能使用stdClass类型的对象作为此行上的数组:
$json[$user] = array("first" => $first, "last" => $last);
我使用PHP5.2。有什么想法吗?谢谢!