in reply to
seconds into a date
By using the number of seconds since the epoch, you can use:
my (@date) = localtime($numSeconds);
[download]
See the
time
and
localtime
data in perldoc.
Comment on
Re: seconds into a date
Download
Code
In Section
Seekers of Perl Wisdom