gpt4 book ai didi

perl - 如何在 Perl 中将本地时间转换为 Unix 时间戳?

转载 作者:行者123 更新时间:2023-12-05 08:13:33 24 4
gpt4 key购买 nike

例如:开始日期:10/02/2010

如何在 Perl 中为 10/02/2010 00:00:00 转换一个相等的时间戳?

我不能使用本地时间或时间..还有其他方法可以实现吗?

最佳答案

您可以使用 Time::Local核心模块:

use Time::Local 'timelocal';
my ($d, $m, $y) = split '/', '10/02/2010';
my $time = timelocal(0, 0, 0, $d, $m-1, $y);

请注意,timelocal() 的月份参数在 0..11 范围内。

关于perl - 如何在 Perl 中将本地时间转换为 Unix 时间戳?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2237596/

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