講Perl中的本地時間與UNIX時間戳記間相互轉換的方法_perl

來源:互聯網
上載者:User

當你的Perl指令碼需要解決時間資訊,這裡有兩種方法來表示和處理日期和時間。一種方法是易讀的時間表示(例,"Sat Mar 14 10:14:05 EDT 2015"),另外一種是使用UNIX時間戳記(也叫“新紀元時間”),這是從1970年1月1日到今所經過的時間秒數。每一種方法都有它自己的優劣勢,取決於你的需要,也許也就需要轉換一種格式到另一種。
Perl中轉換本地時間到UNIX時間戳記

為了從日期文字中獲得UNIX時間,可以使用Date::Parse模組中str2time()函數。此函數可以處理多種格式,例如:

  Sat Mar 14 10:14:05 EDT 2015  3/14/2015 10:14:05 -0400  14/Mar/15 10:14:05  14 Mar 15 10:14:05  use Date::Parse;  my $local_time = "Sat Mar 14 10:14:05 EDT 2015";  # 1426342445 will be stored in $unix_time  my $unix_time = str2time($local_time);

Date:Parse 模組支援多種語言(英語,法語,德語和意大利語)和時區。例如:

  use Date::Parse;  use Date::Language;  my $lang = Date::Language->new('French');  my $unix_time = $lang->str2time("12:14:05, Ago 16, 2014 (CEST)");

Perl中UNIX時間戳記到易讀的日期和時間

如果你想要轉換UNIX時間戳記到易讀的格式,可以使用localtime()函數,此函數可以轉換UNIX時間戳記為一個9元素列表。然後你可以使用返回的list構造任何你需要的可讀格式。這裡有一個程式碼片段:

  # $sec, $min, $hour: 秒,分,時  # $mday: 月中的某天 (0-31)  # $mon: 月份,範圍 0 (一月) 至 11 (十二月)  # $year: 年份,與1900年的差值(2015年為2015-1900=115)  # $wday: 星期,範圍 0 (星期天) 至 6 (星期六)  # $yday: 年中的某天,範圍 0 至 364 (或 365 閏年)  # $isdst: 是否是夏令時  my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime($unix_timestamp);  # necessary conversion of $mon and $year  $mon += 1;  $year += 1900;  print "Current time: $year-$mon-$mday $hour:$min:$sec\n";

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.