PHP code example of jadgray / full-time-api

1. Go to this page and download the library: Download jadgray/full-time-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/ */

    

jadgray / full-time-api example snippets


    use Jadgray\FullTimeApi\Division;
    
    $teams = (new Division())->getTeams(1234, '1_234');

    use Jadgray\FullTimeApi\Division;
    
    $fixtures = (new Division())->getFixtures(1234, '1_234');

    use Jadgray\FullTimeApi\Division;
    
    $fixtures = (new Division())->getFormattedFixtures(1234, '1_234');

    use Jadgray\FullTimeApi\Division;
    
    $results = (new Division())->getResults(1234, '1_234');

    use Jadgray\FullTimeApi\Division;
    
    $results = (new Division())->getFormattedResults(1234, '1_234');