Thread Datum und Uhrzeit aus timestamp (8 answers)
Opened by Tom at 2003-12-15 22:28

Rambo
 2003-12-17 16:29
#541 #541
User since
2003-08-14
803 Artikel
BenutzerIn

user image
ich habe mir diesen code teil mal von jemanden Abgeschaut.

Code: (dl )
1
2
3
4
5
@time = localtime();
$time_string = sprintf "%02d.%02d.%04d %02d:%02d.%02d",
$time[3], $time[4]+1, $time[5]+1900,
$time[2], $time[1], $time[0];
print "$time_string\n";

hat bisher immer funktioniert :-)

View full thread Datum und Uhrzeit aus timestamp