in reply to Re^2: What's so wrong with this (dereferencing)code?
in thread What's so wrong with this (dereferencing)code?
Time::Piece docs say to use its version of strftime and strptime "without the overhead of the full POSIX extension".use POSIX 'strftime'; $now = strftime("%a, %e %b %Y %T GMT",gmtime($now)); use POSIX (); $now = POSIX::strftime("%a, %e %b %Y %T GMT",gmtime($now));
|
---|