in reply to DateTime::Format::Strptime Parsing Seems to have a Problem?
Tip:
our $LocalTZ = DateTime::TimeZone->new( name => 'local' ); my $dtnow = DateTime->now(time_zone => $LocalTZ);
can be written as
my $dtnow = DateTime->now( time_zone => 'local' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: DateTime::Format::Strptime Parsing Seems to have a Problem?
by ozboomer (Friar) on Mar 31, 2019 at 00:35 UTC | |
by hippo (Archbishop) on Mar 31, 2019 at 12:23 UTC |