vote up 0 vote down star

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.

flag

Why the downvote on this question? It's clearly specified and I don't think is a duplicate. – Dominic Rodger Nov 6 at 10:40

3 Answers

vote up 8 vote down check

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));
link|flag
@SilentGhost - thanks for your edit, silly omission - caffeine time! – Dominic Rodger Nov 6 at 10:38
echo date("Y-m-t", strtotime($a_date)); worked fine. – Mithun Nov 6 at 10:40
vote up 2 vote down

You could create a date for the first of the next month, and then use strtotime("-1 day", $firstOfNextMonth)

link|flag
+1 for an interesting approach. – Dominic Rodger Nov 6 at 10:44
vote up 0 vote down

You can use "t" in date function to get the number of day in a particular month.

The code will be something like this:

function lastDateOfMonth($Month, $Year=-1) {
    if ($Year < 0) $Year = 0+date("Y");
    $aMonth         = mktime(0, 0, 0, $Month, 1, $Year);
    $NumOfDay       = 0+date("t", $aMonth);
    $LastDayOfMonth = mktime(0, 0, 0, $Month, $NumOfDay, $Year);
    return $LastDayOfMonth;
}

for($Month = 1; $Month <= 12; $Month++)
    echo date("Y-n-j", lastDateOfMonth($Month))."\n";

The code is self-explained. So hope it helps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.