Thread Fehler bei Zeitabfrage mit time/localtime
(4 answers)
Opened by anony at 2004-06-19 17:40
Hi Folks,
folgendes Problem: Ich will mir einen Zeitstempel zusammenbasteln in meinem 3 Zeiler benutze ich da so: # 0 1 2 3 4 5 6 7 8 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); print("$sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst\n"); und erhalte folgenden output: Time::tm=ARRAY(0x40068690),,,,,,,, Wenn ich das ganze auf der Standardeingabe mache geht es: :~/bin > perl # 0 1 2 3 4 5 6 7 8 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); print("$sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst\n"); 37,38,15,19,5,104,6,170,1 ~/bin > perl -v This is perl, v5.6.1 built for IA64.ARCHREV_0-thread-multi ist das ein bug, bestimmt nicht ich bin doch nur zu blöd oder?? Danke+Grüße, anony |