rc3/maps/ir/gmaze/right.php

8 lines
268 B
PHP

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