rc3/maps/ir/gmaze/left.php
2021-02-16 04:22:04 +01:00

9 lines
272 B
PHP

<?php
$tstamp = round(microtime(true)*100); // 0.01 sec resolution
$data = file_get_contents('left.json');
$data = str_replace(".php#", ".".$tstamp.".php#", $data); // Patch php-exits to prevent caching
header('Content-type: application/json');
echo($data);
exit;
?>