1
0
mirror of synced 2025-12-28 00:23:25 +00:00
Files
subway/services/stop_service.php
2024-06-04 21:50:20 +02:00

11 lines
316 B
PHP

<?php
function getStops($line) {
$json = file_get_contents("../data/stops.json");
$data = json_decode($json, true);
$result = array_filter($data, function($item) use ($line) {
return $item['fields']['mode'] === 'METRO' && $item['fields']['indice_lig'] === "$line";
});
return $result;
}