in reply to time stamp store in $utctime needs converting to local time zone
something like this?
use DateTime; my $input = '2011-08-09 03:33:11'; my ($year, $month, $day, $hour, $minute, $second) = split (/[\s-:]/, $ +input); $dt = DateTime->new( year => $year, month => $month, day => $day, hour => $hour, minute => $minute, second => $second, time_zone => 'UTC', ); $dt->set_time_zone('America/North_Dakota/Center'); print $dt->strftime('%F %T'), "\n";
Kind Regards
|
|---|