PHP code example of sohelrana820 / weather-forecast-php
1. Go to this page and download the library: Download sohelrana820/weather-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/ */
sohelrana820 / weather-forecast-php example snippets
use SohelRana820\Forecast\Forecast;
$forecast = new Forecast(API_KEY);
$forecast->setLatitude(DEFAULT_LATITUDE);
$forecast->setLongitude(DEFAULT_LATITUDE);
$response = $forecast->request();
// Retrieve the current data
var_dump($response->getCurrentlyData());
// Retrieve the hourly data
var_dump($response->getHourlyData());
// Retrieve the daily data
var_dump($response->getDailyData());
// Retrieve weather flags
var_dump($response->getFlags());
$forecast->setOptions($optionsArray = ['units' => 'si']);
composer