Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Perl の時間関数は素晴らしいですが、今日の最小のエポック値を見つけるにはどうすればよいですか? エポックは秒単位であるため、特定の日に対応する多くのエポック値があると想像できます。自分のタイムゾーンで最低を見つけるにはどうすればよいですか?
の使用はサポートされていませんtimelocalが、必要な情報を取得するために問題なく使用できるはずです。
timelocal
use Time::Local qw( timelocal ); my $epoch = timelocal(0,0,0, (localtime)[3,4,5]);