rc3/maps/ir/gmaze/left_old.php

10 lines
294 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("Expires: 0");
header('Content-type: application/json');
echo($data);
exit;
?>