1

我正在使用DateTime模块。但是它提供了错误的时间。请考虑以下代码:

#!/usr/bin/perl -w
use strict;

use Time::localtime;
my $now = ctime();
print $now."\n";

print "------------------------------\n";

use DateTime;
my $dt = DateTime->now;
print $dt."\n";

它的输出是:

Wed Dec 26 22:11:52 2012
------------------------------
2012-12-27T06:11:52

所以,如您所见,DateTime输出领先 8 小时,这是错误的。这是Linuxdate命令输出:

# date
Wed Dec 26 22:13:17 PST 2012

因此,date命令输出与输出匹配time::localtime

DateTime你能帮我理解我在使用模块时哪里出错了吗?

-谢谢。

更新:

来自 hte CPAN 文档:

DateTime->now( ... )

This class method is equivalent to calling from_epoch() with the value returned from Perl's time() function. Just as with the new() method, it accepts "time_zone" and "locale" parameters.

By default, the returned object will be in the UTC time zone.

因此,返回的时间似乎是 UTC。但是,我在 PST 所在的时区。可能这就是为什么我看到不同的时间。

4

2 回答 2

7

我通过了区域信息,它现在可以正常工作:

#!/usr/bin/perl -w
use strict;

use Time::localtime;
my $now = ctime();
print $now."\n";

print "------------------------------\n";

use DateTime;
my $dt = DateTime->now ( time_zone => 'America/Los_Angeles' );
print $dt."\n";

输出:

Wed Dec 26 22:28:44 2012
------------------------------
2012-12-26T22:28:44

对于东海岸

my $dateF = DateTime->now( time_zone => 'America/New_York' )->ymd;
于 2012-12-27T06:29:00.983 回答
1

用户没有理由知道机器的时区,即使他们知道,硬编码也是个坏主意。答案是

my $dt = DateTime->now(time_zone => 'local') # current time, local timezone
my $dt = DateTime->from_epoch(epoch=>time(), time_zone=>'local') # from timestamp

这会将其设置为机器的时区。

于 2021-05-09T10:55:04.797 回答