Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Date to epoch

by Utilitarian (Vicar)
on Jul 19, 2012 at 07:38 UTC ( [id://982598]=note: print w/replies, xml ) Need Help??


in reply to Date to epoch

the mktime function in the POSIX module is your friend here.
~/$ perl -MPOSIX -E 'say POSIX::mktime(15, 28, 06, 27, 02, 206);' 4299114495 ~/$ perl -E 'say scalar localtime (4299114495);' Sat Mar 27 06:28:15 2106
The important thing to note is that the year value is $year - 1900 (but of course you are going to read the POSIX pod now anyway in order to see how strftime works to create ISO date strings ;) )

print "Good ",qw(night morning afternoon evening)[(localtime)[2]/6]," fellow monks."

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://982598]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-19 17:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found