寫JSON我有以下的JSON文件中的list.txt
:PHP讀取和文件
{
"bgates":{"first":"Bill","last":"Gates"},
"sjobs":{"first":"Steve","last":"Jobs"}
}
如何添加"bross":{"first":"Bob","last":"Ross"}
使用PHP我的檔案?
這是我到目前爲止有:
<?php
$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。有什麼想法嗎?謝謝!
我討厭'json_decode'默認返回一個類而不是數組。這讓我每次在一個月內第一次使用'json_decode'就會出現問題。 – Tim 2012-01-14 00:01:15