PHP code example of bejblade / openweather
1. Go to this page and download the library: Download bejblade/openweather 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/ */
bejblade / openweather example snippets
use Bejblade\OpenWeather\OpenWeather;
// Initialize OpenWeather API with Your API key using default configuration
$api = new OpenWeather(['api_key' => 'your_api_key']);
use Bejblade\OpenWeather\OpenWeather;
$api = new OpenWeather(['api_key' => 'your_api_key']);
// First initialize location object
$location = $api->findLocationByName('London');
// Fetch weather data
$weather = $api->getWeather($location);
echo 'Current weather in ' . $location->getName() .': '. $weather->getDescription();
echo 'Temperature: ' . $weather->temperature()->get().'°'.$weather->temperature()->getUnits();
if($location->getWeather()->isRaining()) // You can also access weather through location objects
echo "It's raining";