Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Finding End of Month's date

by gmpassos (Priest)
on Jan 05, 2005 at 23:09 UTC ( [id://419773]=note: print w/replies, xml ) Need Help??


in reply to Finding End of Month's date

Take a look at Date::Object:
use Date::Object ; my $d = Date::Object->new_local(2005 , 1 , 5) ; my $d_end = $d->clone->set(undef,undef,31) ; ## set(YYYY , MM , DD) print "date: $d\n" ; print "date end: $d_end\n" ; if ( $d == $d_end ) { print "Date is the last day of month!\n" ; }
Output:
date: 2005-01-05 00:00:00 date end: 2005-01-31 00:00:00
Try to change the inputs for $d on new_local() to match the last day of the month. If you don't paste any argument it will get the actual time.

Graciliano M. P.
"Creativity is the expression of liberty".

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-16 11:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found