gpt4 book ai didi

perl - 在Perl中推荐的日期算术方法是什么?

转载 作者:行者123 更新时间:2023-12-04 05:01:02 25 4
gpt4 key购买 nike

在Perl中推荐的日期算术方法是什么?

举例来说,我想知道今天三天前的日期(其中today = 2010-10-17today - 3 days = 2010-10-13)。您将如何在Perl中做到这一点?

最佳答案

您可以使用DateTime和DateTime::Duration

http://search.cpan.org/dist/DateTime/lib/DateTime/Duration.pm

或使用unix时间戳记:

my $now = time();
my $threeDaysAgo = $now - 3 * 86400;
my ($day, $mon, $year) = (localtime($threeDaysAgo))[3, 4, 5];
printf("Three days ago was %04d-%02d-%02d", $year+1900, $mon+1, $day);

关于perl - 在Perl中推荐的日期算术方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3954514/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com