Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Library - API V1] PHP Library for TheSportsDB.com (Jelle)
#1
PHP Library to connect to the api of https://thesportsdb.com/

Download: Github: https://github.com/Jelle-S/TheSportsDb
Developer: Jelle Sebreghts
Github Profile: https://github.com/Jelle-S

Example Code:

PHP Code:
<?php

include_once __DIR__ . '/default_bootstrap.php';

// Get all sports.
$sports = $db->getSports();

// Print the first sport.
$sport = reset($sports);
print_r($sport->raw());

// Get the leagues of this sport (lazy loaded).
$leagues = $sport->getLeagues();

// Print the first league.
$league = reset($leagues);
print_r($league->raw());

// Get the seasons for this league.
$seasons = $league->getSeasons();

// Print the first season.
$season = reset($seasons);
print_r($season->raw());

// Get the events for this league.
$events = $season->getEvents();

// Print the first event.
$event = reset($events);
// Trigger lazy load, the full event object will be loaded when calling $event->raw().
$event->getName();
print_r($event->raw());
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)