Date i PHP 5.3 fejl
Har lidt problemer med denne efter jeg gik fra PHP 5.2 > 5.3:<?php
$day = date("d/m/Y");
if ($day == "02/12/2011") {
echo "<a id='inline' href='#d2'>2</a>"; }
else {
echo "<div id='inline'>2</div>"; }
?>
Jeg får følgende fejltekst:
"It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Berlin' for 'CET/1.0/no DST' instead in..."
Hvordan bør jeg lige tilpasse den så jeg undgår fejlen?
