Perl 三种时间time,localtime,gmttime

#!/usr/bin/perl
use warnings;
use diagnostics;
use strict;
use POSIX;

print "time: ", time(),"
";
print "localtime: ", localtime(),"
";
print "gmttime: ",  gmtime(),"
";


time: 1427087838
localtime: 1817132321151810
gmttime: 181752321151810
I'm falling off the sky all alone.The courage inside is gonna break the fall. Nothing can dim my light within. I am That I am 程序 = 数据结构 + 算法
原文地址:https://www.cnblogs.com/IamThat/p/4359553.html