rc3/maps/ir/cellar/01/switch.php

6 lines
151 B
PHP

<?php
$state = json_decode(file_get_contents("state.json"), true);
$state["switch"] = 1;
file_put_contents("state.json", json_encode($state));
exit;
?>