PHP code example of kayschima / tischtennis-live-php

1. Go to this page and download the library: Download kayschima/tischtennis-live-php 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/ */

    

kayschima / tischtennis-live-php example snippets




ayschima\TischtennisLive\TischtennisLive;

$tischtennis_live = new TischtennisLive(
    baseurl: 'https://segeberg.tischtennislive.de/',
    teamId: 113261,
    wettbewerbId: 17846,
    runde: 2
);

foreach ($tischtennis_live->tabelle() as $team) {
    echo 'Platz ' . $team['Platz'] . ': ' . $team['Mannschaft'] . PHP_EOL;
}

var_dump($tischtennis_live->spielplan());
var_dump($tischtennis_live->bilanz());
bash
composer