PHP code example of martysmarty-se / rtlxl-wrapper

1. Go to this page and download the library: Download martysmarty-se/rtlxl-wrapper 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/ */

    

martysmarty-se / rtlxl-wrapper example snippets


$wrapper = new \martysmartySE\RTLXLWrapper\RTLXLWrapper();

//Get all shows
$Shows = $wrapper->getShows();

//Get all seasons
$seasons = $wrapper->getShowSeasons(10821);

//Get all episodes
$episodes = $wrapper->getSeasonEpisodes(10821, 378858);