Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: How to find the last date of the previous month?

by Athanasius (Archbishop)
on Oct 30, 2012 at 03:26 UTC ( [id://1001450]=note: print w/replies, xml ) Need Help??


in reply to How to find the last date of the previous month?

Here is one way:

#! perl use strict; use warnings; use Date::Calc qw(Days_in_Month Today); print 'The last day of last month was ', last_day_last_month(), "\n"; sub last_day_last_month { my ($year, $month, $day) = Today([time]); if (--$month == 0) { $month = 12; --$year; } return sprintf("%02d/%d/%d", $month, Days_in_Month($year, $month), $year); }

Hope that helps,

Athanasius <°(((><contra mundum

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (6)
As of 2024-04-24 09:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found