|
weather->forecast_information->city->attributes()->data;
$wetter['datum'] = $api->weather->forecast_information->forecast_date->attributes()->data;
$wetter['zeit'] = $api->weather->forecast_information->current_date_time->attributes()->data;
// Aktuelles Wetter
$wetter[0]['zustand'] = $api->weather->current_conditions->condition->attributes()->data;
$wetter[0]['temperatur'] = $api->weather->current_conditions->temp_c->attributes()->data;
$wetter[0]['luftfeuchtigkeit'] = $api->weather->current_conditions->humidity->attributes()->data;
$wetter[0]['wind'] = $api->weather->current_conditions->wind_condition->attributes()->data;
$wetter[0]['icon'] = str_replace($icons_google, $icons_src, $api->weather->current_conditions->icon->attributes()->data);
// Wettervorhersage heute, morgen, in zwei und in drei Tagen ($wetter[1] bis $wetter[4])
$i = 1;
foreach($api->weather->forecast_conditions as $weather)
{
$wetter[$i]['wochentag'] = $weather->day_of_week->attributes()->data;
$wetter[$i]['zustand'] = $weather->condition->attributes()->data;
$wetter[$i]['tiefsttemperatur'] = $weather->low->attributes()->data;
$wetter[$i]['hoechsttemperatur'] = $weather->high->attributes()->data;
$wetter[$i]['icon'] = str_replace($icons_google, $icons_src, $weather->icon->attributes()->data);
$i++;
}
return $wetter;
}
// Funktionsaufruf in Array
$wetter = website_wetter("Florenz","it");
// Beispielhafte Ausgabe
echo "".$wetter['stadt'].":\n";
echo " | ";
echo "Aktuell: \n";
echo " \n";
echo $wetter[0]['zustand']." \n";
echo "Temperatur: ".$wetter[0]['temperatur']."° C \n";
echo $wetter[0]['luftfeuchtigkeit']." \n";
echo $wetter[0]['wind']." \n";
echo " | ";
echo "";
echo "".$wetter[1]['wochentag']." \n";
echo " \n";
echo $wetter[1]['zustand']." \n";
echo "min. ".$wetter[1]['tiefsttemperatur']."° C | max. ".$wetter[1]['hoechsttemperatur']."° C \n";
echo " | ";
echo "";
echo "".$wetter[2]['wochentag']." \n";
echo " \n";
echo $wetter[2]['zustand']." \n";
echo "min. ".$wetter[2]['tiefsttemperatur']."° C | max. ".$wetter[2]['hoechsttemperatur']."° C \n";
echo " | ";
echo "";
echo "".$wetter[3]['wochentag']." \n";
echo " \n";
echo $wetter[3]['zustand']." \n";
echo "min. ".$wetter[3]['tiefsttemperatur']."° C | max. ".$wetter[3]['hoechsttemperatur']."° C \n";
echo " | ";
echo "";
echo "".$wetter[4]['wochentag']." \n";
echo " \n";
echo $wetter[4]['zustand']." \n";
echo "min. ".$wetter[4]['tiefsttemperatur']."° C | max. ".$wetter[4]['hoechsttemperatur']."° C \n";
echo " | ";
?>