我有一个 perl 脚本,它正在获取当前时间,但我也希望获取当前时间前 45 天的日期。这是我所拥有的:
*已经尝试使用 date::calc DHMS,这就是为什么第二个按原样格式化但它不断返回错误的原因
# get the current time stamp
use POSIX qw( strftime );
my $current_time = strftime("%Y-%m-%d %H:%M:%S", localtime);
print "\n$current_time\n";
# get the date 45 days ago
my $time = strftime("%Y, %m, %d, %H, %M, %S", localtime);
print "\n$time\n\n";