php-integration #21

Closed
fred.boniface wants to merge 146 commits from php-integration into main
1 changed files with 8 additions and 0 deletions
Showing only changes of commit ca94cbcbc7 - Show all commits

8
example.php Normal file
View File

@ -0,0 +1,8 @@
<?php
require("./OpenLDBSVWS/openLDBSVWS.php");
date_default_timezone_set("Europe/London");
$OpenLDBSVWS = new OpenLDBSVWS("ACCESS TOKEN");
$response = $OpenLDBSVWS->GetDepartureBoardByCRS(10,"BRI",date("H:i:s",time()),120,"","","","","True");
header("Content-Type: text/plain");
print_r($response);
?>