<?
echo ( "Aktuelle Weltzeit nach GMT ( Greenwich Mean Time )" );
echo ( "<br>" . gmdate ( "D j. M Y H:i" ) );
echo ( "<p>- deutsche Zeit ( GMT + 1|2 h Zeitzone, DST )" );
echo ( "<br>" . date ( "D j. M Y H:i" ) );
echo ( "<p>- lokal formatierte Zeit ( GMT + 1|2 h Zeitzone, DST )" );
setlocale(LC_ALL, 'de_DE'); // setzt lokale Informationen.
echo ( "<br>" . strftime ( "%A, %d. %B %Y %H:%M:%S %Z" ) );
echo ( "<p>Datum ( 12/15/2006, 15:30:25) formatieren." );
echo ( "<br>" . strftime ( "%A, %d. %B %Y %R:%S", mktime(15,30,25,12,15,2006) ) );
echo ( "<p>Monatstage im " . strftime ( "%B %Y" ). "? - " . date( "t" ) . "!" );
echo ( "<br>Daylight Saving Time ( DST )? - " . date ("I") . "!" );
checkdate(2,29,2000) ? $result = "Ja!" : $result = "Nein!" ;
echo ( "<br>Existiert das Datum 29.02.2000? - $result " );
echo ( "<p>. UNIX time_stamp ( Zeitstempel ) for date and time ." );
echo ( "<br>UNIX-Alter seit 1. Jan 1970 in Sekunden ( " . time() . " )" );
echo ( "<br>In Mikrosekunden, Sekunden( " . microtime() . " )");
?>