我正在尝试使用字符串日期,并将其格式化为正确输出为“%Y%m%d_%H%M”。除了这一天,一切都输出正确。它实际上是第二天回来的,我不知道为什么会这样。下面是代码和输出。
my $currentTime = strftime("%Y%m%d_%H%M\n", gmtime(time));
my $hashTime = strftime("%Y%m%d_%H%M\n", gmtime(UnixDate($user->{'add_date'}, "%s")));
$self->Print($user->{'add_date'} ."\n". $currentTime . "\n" . $hashTime);
输出:
2016-12-02 20:35:43 # Date from the Database
20161202_2046 # Current GMTime
20161203_0235 # This should be 20161202_2035?
怎么输出为03?