I need to read the system clock (time and date) and display it in a human-readable format in Perl.
Currently, I'm using the method that I found here, but this seems like it's more for illustration. Is there are more canonical way?
|
|
|
|
|
|
|
Use localtime function:
|
||||
|
|
|
Like someone else mentioned, you can use localtime, but I would parse it with Date::Format. It'll give you the timestamp formatted in pretty much any way you need it. |
|||
|
|
|
You can use localtime to get the time and the POSIX module's While it'd be nice to use Date::Format's and its strftime because it uses less overhead, the POSIX module is distributed with Perl, and is thus pretty much guaranteed to be on a given system.
|
|||
|
|
|
|
As everyone else said "localtime" is how you tame date, in an easy and straight forward way. But just to give you one more option. The DateTime module. This module has become a bit of a favorite of mine.
This would print "Today is Wednesday, Jan 28 2009AD". Just to show off a few of the many things it can do.
It prints out "2009-01-28" |
||
|
|