3.8.3. Discussion
The simplest solution is built into Perl already: the
localtime function. In scalar context, it returns
the string formatted in a particular way:
Wed July 16 23:58:36 2003
This makes for simple code, although it restricts the format of the
string:
use Time::Local;
$time = timelocal(50, 45, 3, 18, 0, 73);
print "Scalar localtime gives: ", scalar(localtime($time)), "\n";
Scalar localtime gives: Thu Jan 18 03:45:50 1973
Of course, localtime requires the date and time in
Epoch seconds. The POSIX::strftime function takes
individual DMYMHS values plus a format and returns a string. The
format is similar to a printf format:
% directives specify fields in the output string.
A full list of these directives is available in your system's
documentation for strftime. The
strftime function expects the individual values
representing the date and time to be in the same range as those
returned by localtime:
use POSIX qw(strftime);
use Time::Local;
$time = timelocal(50, 45, 3, 18, 0, 73);
print "strftime gives: ", strftime("%A %D", localtime($time)), "\n";
strftime gives: Thursday 01/18/73
All values are shown in their national representation when using
POSIX::strftime. So, if you run it in France, your program would
print "Sunday" as "Dimanche".
Be warned: Perl's interface to the POSIX function
strftime assumes the date falls in the current
time zone.