doubi9531 2014-07-21 04:14
浏览 72
已采纳

在PHP中取消设置JSON的特定属性

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"
   }
 }
}

In my PHP code I write

$jsona = file_get_contents("../pages.json");
$jsonb = json_decode($jsona,true);  
$data = $jsonb['pages'];

Now if I want to delete the property "index.php" I write unset($data["index.php"] and then I write

file_put_contents("../pages.json",json_encode($data));

Though after going to my JSON file it deletes "pages"

actual outcome

{"google.php":{"status":"enabled","theme":"dark","identifier":"KMS"},"doodle.php":{"status":"disabled","theme":"light","identifier":"transact"}}

I need to just unset a specific child property of pages. Such as "google.php" or "doodle.php". I checked what is being posted as $data[$page] and it is the specific element. So why is it unsetting pages and leaving the rest of the properties?

  • 写回答

1条回答 默认 最新

  • doumou1864 2014-07-21 04:19
    关注

    Don't set $data to $jsonb['pages']. That's specifically setting your $data variable to a sub-section of your overall object.

    Just use unset($jsonb['pages']['index.php']).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题
  • ¥20 yolov5自定义Prune报错,如何解决?