<P>If your operating system supports the corresponding system calls
(``<A HREF="../../../lib/Pod/perlfunc.html#item_time"><CODE>time()</CODE></A>'' and ``<A HREF="../../../lib/Pod/perlfunc.html#item_localtime"><CODE>localtime()</CODE></A>''), this function will return
the information provided by your system clock, i.e., the current
date and time, the number of the day of year, the number of the
day of week and a flag signaling wether daylight savings time
is currently in effect or not.</P>
<P>The ranges of values returned (and their meanings) are as follows:</P>
<PRE>
$year : should at least cover 1900..2038
$month : 1..12
$day : 1..31
$hour : 0..23
$min : 0..59
$sec : 0..59 (0..61 on some systems)
$doy : 1..366
$dow : 1..7
$dst : -1..1</PRE>
<P>The day of week (``<CODE>$dow</CODE>'') will be ``<CODE>1</CODE>'' for Monday, ``<CODE>2</CODE>'' for
Tuesday and so on until ``<CODE>7</CODE>'' for Sunday.</P>
<P>The daylight savings time flag (``<CODE>$dst</CODE>'') will be ``<CODE>-1</CODE>'' if this
information is not available on your system, ``<CODE>0</CODE>'' for no daylight
savings time (i.e., normal time) and ``<CODE>1</CODE>'' when daylight savings
time is in effect.</P>
<P>If your operating system does not provide the necessary system calls,
calling this function will result in a fatal ``not available on this
system'' error message.</P>
<P>If you want to handle this exception yourself, use ``<A HREF="../../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>'' as follows:</P>