How can I get the last day of the month in PHP?
Given:
$a_date = "2009-11-23"
I want 2009-11-30; and given
$a_date = "2009-12-23"
I want 2009-12-31.
|
|
|
|||||||||||||
|
|
The code using strtotime() will fail after year 2038. (as given in the first answer in this thread) For example try using the following:
It will give answer as: 1970-01-31 So instead of strtotime, DateTime function should be used. Following code will work without Year 2038 problem:
|
|||
|
There is also the built in PHP function cal_days_in_month()?
|
|||
|
|
|
You could create a date for the first of the next month, and then use |
|||
|
|
|
This should work:
|
|||
|
|
|
|||
|
|
|
You can use " The code will be something like this:
The code is self-explained. So hope it helps. |
||||
|
|