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.
Use a formula to find the end date of each month may be very easy for every Excel user. Also, you can use this formula =EOMONTH(A2,0) to get the month's end date.
Subtract Dates in Excel To find the number of dates between the start date and end date, use this formula in cell C2: =B2-A2.
t
returns the number of days in the month of a given date (see the docs for date
):
$a_date = "2009-11-23"; echo date("Y-m-t", strtotime($a_date));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With