Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

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

8 Answers

up vote 75 down vote accepted

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));
share|improve this answer
@SilentGhost - thanks for your edit, silly omission - caffeine time! – Dominic Rodger Nov 6 '09 at 10:38
echo date("Y-m-t", strtotime($a_date)); worked fine. – Mithun Nov 6 '09 at 10:40
14  
This will fail after year 2038. So instead of strtotime, DateTime function should be used. Following code will work without Year 2038 problem: $d = new DateTime( '2009-11-23' ); echo $d->format( 'Y-m-t' ); – Mugunth Mar 1 '12 at 1:42
1  
@Mugunth If you are working with dates 24 years in the future you may run into problems sooner than 2038, however, servers are already moving over to 64-bit architecture which will give us about 292 billion years to correct the problem. – J.Money Feb 7 at 5:59

The code using strtotime() will fail after year 2038. (as given in the first answer in this thread) For example try using the following:

$a_date = "2040-11-23";
echo date("Y-m-t", strtotime($a_date));

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:

$d = new DateTime( '2040-11-23' ); 
echo $d->format( 'Y-m-t' );
share|improve this answer
I will be 71 and retired by then, so not a problem for me! j/k But seriously folks -- heed this warning! – Volomike Nov 2 '12 at 3:44
3  
This assumes you are running a 32-bit version of PHP. – J.Money Feb 7 at 6:00

There is also the built in PHP function cal_days_in_month()?

"This function will return the number of days in the month of year for the specified calendar." http://php.net/manual/en/function.cal-days-in-month.

echo cal_days_in_month(CAL_GREGORIAN, 11, 2009); 
// = 30
share|improve this answer

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

share|improve this answer
+1 for an interesting approach. – Dominic Rodger Nov 6 '09 at 10:44

Your solution is here..

$lastday = date('t',strtotime('today'));
share|improve this answer

This should work:

$week_start = strtotime('last Sunday', time());
$week_end = strtotime('next Sunday', time());

$month_start = strtotime('first day of this month', time());
$month_end = strtotime('last day of this month', time());

$year_start = strtotime('first day of January', time());
$year_end = strtotime('last day of December', time());

echo date('D, M jS Y', $week_start).'<br/>';
echo date('D, M jS Y', $week_end).'<br/>';

echo date('D, M jS Y', $month_start).'<br/>';
echo date('D, M jS Y', $month_end).'<br/>';

echo date('D, M jS Y', $year_start).'<br/>';
echo date('D, M jS Y', $year_end).'<br/>';
share|improve this answer
function first_last_day($string, $first_last, $format) {
$result = strtotime($string);
$year = date(‘Y’,$result);
$month = date(‘m’,$result);
$result = strtotime(“{$year}-{$month}-01″);
if ($first_last == ‘last’){$result = strtotime(‘-1 second’, strtotime(‘+1 month’, $result)); }
if ($format == ‘unix’){return $result; }
if ($format == ‘standard’){return date(‘Y-m-d’, $result); }
}

http://zkinformer.com/?p=134

share|improve this answer
first_last_day? :-( – Mithun Mar 20 '12 at 4:31

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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