PHP code example of guhelski / forecast-php
1. Go to this page and download the library: Download guhelski/forecast-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/ */
guhelski / forecast-php example snippets
use Forecast\Forecast;
$forecast = new Forecast('YOUR_API_KEY');
// Get the current forecast for a given latitude and longitude
var_dump($forecast->get('37.8267','-122.423'));
// Get the forecast at a given time
var_dump($forecast->get('37.8267','-122.423', '2013-05-06T12:00:00-0400'));
// Use some optional query parameters
var_dump($forecast->get(
'37.8267',
'-122.423',
null,
array(
'units' => 'si',
'exclude' => 'flags'
)
)
);
composer