FrankS: Uhrzeit konvertieren - Korrektur

Beitrag lesen

Ich nochmal!

Da scheint in SELFHTML noch'n Fehler drin zu sein:
SelfHTML:
Die Funktion gibt, wie unter Unix und C üblich, die Anzahl der Millisekunden zurück, die seit dem 1.1.1970 vergangen sind.

Perl Cookbook:
Perl represents points in time as intervals, measuring seconds past a point in time called the Epoch. On Unix and many other systems, the Epoch was 00:00 Jan 1, 1970.

also :
$usa = time();
$europa = localtime($usa+28800); #USA + (8 x 60 x 60)s

Gruß Frank