Generate php arrays from the data files

This commit is contained in:
George Kaklamanos 2015-07-15 16:37:16 +03:00
parent e0785d32fe
commit 36893d1e83

5
data.php Normal file
View file

@ -0,0 +1,5 @@
<?php
$routes = json_decode(file_get_contents("routes.json"), true);
$stops = json_decode(file_get_contents("stops.json"), true);
$busposition = json_decode(file_get_contents("busposition.json"), true);
?>