in reply to Re^2: working with epoch seconds
in thread working with epoch seconds
Use a module:
use strict; use warnings; use DateTime; my $dt = DateTime->now; print $dt->strftime ("%Y %m %d, %H:%M:%S %Z\n"); $dt->set_time_zone ('America/New_York'); print $dt->strftime ("%Y %m %d, %H:%M:%S %Z\n"); __END__ 2006 10 09, 11:45:55 UTC 2006 10 09, 07:45:55 EDT
Update: Ah, you figured it out. That's great :^).
--
David Serrano
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: working with epoch seconds
by jeanluca (Deacon) on Oct 09, 2006 at 12:34 UTC | |
by Hue-Bond (Priest) on Oct 09, 2006 at 12:58 UTC |