I was wondering in Perl what is the optimal/clearest way to loop between two dates ? There is plenty modules on cpan that deals with it, but is there any rule of thumb for iterating between two dates ?
Thank you,
|
|
For everything that uses Date manipulation
This will output:
|
|||
|
|
|
These days, most people would recommend using
|
||||
|
|
|
I think the "best" way to do that depends a lot on what you're doing between these two days. In many cases, a simple In other cases, you may wish to use an epoch value, and add/subtract 86400 seconds on each itteration. In one application I've written, I do exactly this, using a DateTime object that I add one day to for each iteration. This is likely overkill for many applications, though. |
|||||||||||
|