PHP code example of medeirosdev / weather-here-developer
1. Go to this page and download the library: Download medeirosdev/weather-here-developer 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/ */
medeirosdev / weather-here-developer example snippets
$request = new WeatherHereDeveloper($license);
// or
$request = WeatherHereDeveloper::license($license);
// or Laravel framework license is auto generated
$request = new WeatherHereDeveloper();
$response = WeatherHereDeveloper::license($license)
->setProduct(Product::OBSERVATION)
->setLanguage(Language::PORTUGUESE_BR)
->setLocation(Location::byName('Campinas - SP - Brazil'))
->request();
// Get description of first node
$response->nodes[0]->description
// Or get description of first node based json response
$response->observations->location[0]->observaton[0]->description