Thread Timestamp erstellen mit localtime(time) ? (4 answers)
Opened by crojay at 2011-04-04 16:08

Taulmarill
 2011-04-04 16:15
#147369 #147369
User since
2004-02-19
1750 Artikel
BenutzerIn

user image
Selten war ich so versucht einfach mit "RTFM" zu antworten.... ok, ok, ich werde es mal etwas hilfreicher versuchen:

Die Ausgabe von localtime ist aus internen bzw. historischen Gründen nicht intuitiv, ich empfehle dir die Funktion strftime aus dem POSIX Modul. In etwa so:
Code (perl): (dl )
1
2
3
4
use POSIX qw/strftime/;

print strftime "%Y-%m-%d %H:%M:%S", localtime(time);
print "\n";
$_=unpack"B*",~pack"H*",$_ and y&1|0& |#&&print"$_\n"for@.=qw BFA2F7C39139F45F78
0A28104594444504400 0A2F107D54447DE7800 0A2110453444450500 73CF1045138445F4800 0
F3EF2044E3D17DE 8A08A0451412411 F3CF207DF41C79E 820A20451412414 83E93C4513D17D2B

View full thread Timestamp erstellen mit localtime(time) ?