>как реализовать функцию mktime на перле?
from perldoc -f localtime :
....
Also see the "Time::Local" module (to convert the
second, minutes, hours, ... back to seconds since
the stroke of midnight the 1st of January 1970,
the value returned by time()), and the strftime(3)
and mktime(3) functions available via the POSIX
module. To get somewhat similar but locale depen-
dent date strings, set up your locale environment
variables appropriately (please see the perllocale
manpage) and try for example:
use POSIX qw(strftime);
$now_string = strftime "%a %b %e %H:%M:%S %Y", localtime;
.....
|