PHP code example of pgrimaud / horaires-ratp-sdk
1. Go to this page and download the library: Download pgrimaud/horaires-ratp-sdk library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pgrimaud / horaires-ratp-sdk example snippets
use Ratp\Api;
$reseau = new \Ratp\Reseau();
$reseau->setCode('metro');
$line = new \Ratp\Line();
$line->setReseau($reseau);
$line->setCode('8');
$station = new \Ratp\Station();
$station->setLine($line);
$stations = new \Ratp\Stations($station);
$api = new Api();
$return = $api->getStations($stations)->getReturn();
foreach ($return->getStations() as $station) {
/** @var \Ratp\Station $station */
echo $station->getName() . "\n";
}