我经历了很多答案,似乎没有一个解决我的问题。洛杉矶(或任何其他时区)表示,我想从纽约运行一个来自纽约的Perl脚本在其他时区安排一项任务。运行脚本的用户将可以选择输入日期/时间和时区。
示例:
perl script.pl -action reboot LAHost.com 2014/012/12 15:00:00 'America/Los_Angeles'
该脚本应在洛杉矶当地时间下午3点在Lahost.com计算机上进行重新启动。
谁能帮助我找到一种使用DateTime或任何其他内置功能在Perl中进行此操作的方法?
我是编程的新手,目前正在学习Perl。所以请原谅我的无知。
您的问题似乎是
如何将指定时区的日期和时间转换为当地时间?
use DateTime::Format::Strptime qw( );
my $date = '2014/012/12';
my $time = '15:00:00';
my $tz = 'America/Los_Angeles';
my $format = DateTime::Format::Strptime->new(
pattern => '%Y/%m/%d %H:%M:%S',
time_zone => $tz,
on_error => 'croak',
);
my $dt = $format->parse_datetime("$date $time");
$dt->set_time_zone('local');
print $format->format_datetime($dt), "n";
my $timeZone="Europe/London";
my $dateTime = DateTime->new(year => $year, month => $month,
day => $day, hour => $hour, minute => $minute,
second => $second, time_zone => $timeZone);