使用PHP编辑JSON Objecs中的JSON对象

时间:2018-03-26 22:29:50

标签: php html json

如何在此JSON文件中增加x或y?我发布了我的PHP代码来增加计数器,但我不知道如何访问" infos" - > " X"或" y"。

JSON文件

{
  "counter": 4,
  "infos": {
    "x": 1,
    "y": 2
  }
}

PHP文件

<?php
$contents = file_get_contents('../test.json');
$contentsDecoded = json_decode($contents, true);

$contentsDecoded['counter']++;

$json = json_encode($contentsDecoded);
file_put_contents('../test.json', $json);
?>

1 个答案:

答案 0 :(得分:1)

只需使用

$decoded['infos']['x']++;