JSON
{
"pages":{
"index.php":{
"status":"enabled",
"theme":"dark",
"identifier":"KMS"
},
"google.php":{
"status":"enabled",
"theme":"dark",
"identifier":"KMS"
},
"doodle.php":{
"status":"disabled",
"theme":"light",
"identifier":"transact"
}
}
}
在我的PHP代码中,我写了
$jsona = file_get_contents("../pages.json");
$jsonb = json_decode($jsona,true);
$data = $jsonb['pages'];
现在,如果我要删除属性"index.php"
,我写unset($data["index.php"]
然后我写
file_put_contents("../pages.json",json_encode($data));
虽然在转到我的JSON文件后,它会删除"pages"
实际结果
{"google.php":{"status":"enabled","theme":"dark","identifier":"KMS"},"doodle.php":{"status":"disabled","theme":"light","identifier":"transact"}}
我需要取消设置页面的特定子属性。例如"google.php"
或"doodle.php"
。我检查了发布的内容为$data[$page]
,它是特定元素。那么为什么要取消pages
并留下剩下的属性呢?
答案 0 :(得分:2)
请勿将$data
设为$jsonb['pages']
。这是专门将您的$data
变量设置为整个对象的子部分。
只需使用unset($jsonb['pages']['index.php'])
。