Advertisement
ebikjr

Untitled

Jul 18th, 2019
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. $fullJson = json_decode(file_get_contents("data.json"), true);
  4. foreach ($fullJson as $k => &$v) {
  5. if ($v["ruang"] === $_GET["ruang"]) {
  6. $v["status"] = (int)$_GET["status"];
  7. echo ($v["status"] ? "On Membuka" : "Off Membuka")." Gerbang";
  8. break;
  9. }
  10. }
  11. file_put_contents("data.json", json_encode($fullJson, 128));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement