Perl篇:時間函數

來源:互聯網
上載者:User

Perl中處理時間的函數有如下幾種:

        1、time函數:返回從1970年1月1日起累計的秒數

             使用:my $t=time();

  

        2、 localtime函數:擷取本地時區時間

             使用:my $t=localtime(time());

  

        3、gmtime函數: 擷取格林威治時間

             使用:my $t=gmtime(time());

          

        得到格式化時間(以localtime函數為例):

        my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time());

        上式中前三個表示秒、分、時,中間三個是天數、月數(從0開始計數)、年份(相對1990年),最後三個分別是一周第幾天(周幾) 、一年第幾天、夏令時有效標識

        通過sprintf來格式化時間,如:

        my $format_time=sprintf("%d-%d-%d %d:%d:%d",$year+1990,$mon+1,$mday,$hour,$min,$sec);

        上述便可以得到形如:2010-8-30 21:00:00 格式的時間

    

        當然,方法不止一種,還可以通過Perl的Date模組來取得格式化的時間。

         

        

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.