如何在此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);
?>
答案 0 :(得分:1)
只需使用
$decoded['infos']['x']++;