Hi -
It's not really a variable, its a function,
in scalar context:
$now = localtime ();
-or, sometimes you must be more explicit-
$now = scalar localtime ();
It returns a formatted string, like;
Thu Oct 17 05:34:07 2002
In list context, it returns a list of values in
a specific order:
@no
On Oct 17, Joseph Ruffino said:
>I have a real quick question, I hope. Now, I know there is a variable
>called localtime, which has the current time and date in, all you have
>to do is assign it to the correct variable. My question is, what are
>the correct variable names for the time? My ass