PHP code example of swiped / handbal-webservice-api
1. Go to this page and download the library: Download swiped/handbal-webservice-api 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/ */
swiped / handbal-webservice-api example snippets
use Swiped\HandbalWebservice\Api;
// Create a new API instance
$api = new Api($code);
$program = $api->getProgram(true);
foreach($api->getTeams() as $team){
echo $team->getName();
$results = $team->getResults();
foreach($team->getStandings() as $standing){
echo $standing->poule->getName();
foreach ($standing->lines as $line) {
echo $line->position .'. ' . $line->team_name;
}
}
}
$filesystem = new \Illuminate\Filesystem\Filesystem;
$cacheStore = new \Illuminate\Cache\FileStore($filesystem, __DIR__.'/cache');
// Create a new API instance
$api = new Api($code, $cacheStore);