Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^2: Date Handling in Perl

by joeymac (Acolyte)
on Jul 11, 2012 at 15:43 UTC ( [id://981171]=note: print w/replies, xml ) Need Help??


in reply to Re: Date Handling in Perl
in thread Date Handling in Perl

Thanks. I have been playing with your method, but I'm not completely sure what this bit is doing:

$hr < 10 ? 36000 : 0

It seems to be some pattern matching that I am not completely familiar with. I was trying to tweak it to see if I could make it print today and/or yesterday in the final position of the directory path before I add it to my operational code, but I can only ever get it to print today (/07/11).

Replies are listed 'Best First'.
Re^3: Date Handling in Perl
by fishmonger (Chaplain) on Jul 11, 2012 at 16:23 UTC

    That is using the ternary operator to set the amount of time we want to subtract when creating the datestamp. You can read up on the ternary operator in 'perldoc perlop'.

    36000 is the number of seconds in 10 hours. Another monk used 60*60*24 which == 86400 and is the number of seconds in 24 hours.

    I was going to use the 86400 value, but in this case 36000 should be sufficient to roll the datestamp back to the previous day. If the hour is grater than 10, then there's no need to adjust the datestamp, so $minus is set to 0.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (7)
As of 2024-04-23 15:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found