我有一些看起来像这样的 JSON:
{
people: []
}
我目前的目标是简单地将元素添加到人员数组中。但最后我也希望能够再次删除元素。
我试过类似的东西:
<?
$file = "test.json";
$json = file_get_contents($file);
$get = json_decode($json);
array_push($get->people, $_GET['person']);
file_put_contents($file, json_encode($get));
?>
但是,这不起作用。我很确定有一个更简单的解决方案。谢谢你的帮助。