Sol & vind
Vejret –
Lokale vejrudsigter fra DMI –
klik her…..
Sol og ned for Stubbesø :
[php]
/* calculate the sunrise time for Lisbon, Portugal
Latitude: 56.267046,
Longitude: 10.707207 EAST
Zenith ~= 90,83
offset: +2 GMT
*/
echo ‘Dato : ‘, date(“d-m-Y”) ;
echo ‘
‘;
echo ‘Sol op kl.: ‘ .date_sunrise(time(), SUNFUNCS_RET_STRING, 56.267046, 10.707207, 90.83, 2);
echo ‘
‘;
echo ‘Sol ned kl.: ‘ .date_sunset(time(), SUNFUNCS_RET_STRING, 56.267046, 10.707207, 90.83, 2);
[/php]