Perl - Time
$x = time(); // returns number of seconds since January 1, 1970
$x = time; // returns number of seconds since January 1, 1970
@x = gmtime(argument); // argument is the value returned by time()
($sec, $min, $hour, $month_day, $month, $year, $weekday, $yearday, $daylightsaving) = @x;
@x = gmtime(time);
@x = localtime(time);
($sec, $min, $hour, $month_day, $month, $year, $weekday, $yearday, $daylightsaving)
page revision: 1, last edited: 04 Apr 2016 03:44