PHP code example of imagdic / covid19

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

    

imagdic / covid19 example snippets


// A summary of new and total cases per country updated daily.
$summary = Covid19::summary();

// Get recovered cases for specific country
$recovered = Covid19::recoveredByCountry('countryName');

// Get death cases for specific country
$deaths = Covid19::deathsByCountry('countryName');

// Get confirmed cases for specific country
$confirmed = Covid19::confirmedByCountry('countryName');

// Get all cases for specific country
$allCases = Covid19::allCasesByCountry('countryName');

$allCases = Covid19::allCasesByCountry('Italy');
bash
$ php artisan test