35

I need to get the first and last day of a month in the format YYYY-MM-DD given only the month and year. Is there a good, easy way to do this?

Thomas Owens
  • 114,398
  • 98
  • 311
  • 431

12 Answers12

64
$first = date('Y-m-d', mktime(0, 0, 0, $month, 1, $year));
$last = date('Y-m-t', mktime(0, 0, 0, $month, 1, $year));

See date() in PHP documentation.

Michał Niedźwiedzki
  • 12,859
  • 7
  • 45
  • 47
7

First day is always YYYY-MM-01, isn't it? Example: date("Y-M-d", mktime(0, 0, 0, 8, 1, 2008))

Last day is the previous day of the next month's first day:

$date = new DateTime("2008-09-01");
$date->modify("-1 day");
echo $date->format("Y-m-d");
Biri
  • 7,101
  • 7
  • 38
  • 52
3

The first day of the month is always 1. So it will become

YYYY-MM-01

the last day can be calculated as:

<?php
    $num = cal_days_in_month(CAL_GREGORIAN, 8, 2003); // 31
    echo "There was $num days in August 2003";
?>
Niyaz
  • 53,943
  • 55
  • 151
  • 182
2

OK, first is dead easy.

date ('Y-m-d', mktime(0,0,0,MM,01,YYYY));

Last is a little trickier, but not much.

date ('Y-m-d', mktime(0,0,0,MM + 1,-1,YYYY));

If I remember my PHP date stuff correctly...

**edit - Gah! Beaten to it about a million times...

Edit by Pat:

Last day should have been

date ('Y-m-d', mktime(0,0,0,$MM + 1,0,$YYYY)); // Day zero instead of -1
Pat
  • 36,282
  • 18
  • 72
  • 87
ZombieSheep
  • 29,603
  • 12
  • 67
  • 114
2
<?php
echo "Month Start - " . $monthStart = date("Y-m-1") . "<br/>";
$num = cal_days_in_month(CAL_GREGORIAN, date("m"), date("Y"));
echo "Monthe End - " . $monthEnd = date("Y-m-".$num);
?>
Eranda
  • 868
  • 1
  • 10
  • 27
1

The easiest way to do this with PHP is

$dateBegin = strtotime("first day of last month");  
$dateEnd = strtotime("last day of last month");

echo date("MYDATEFORMAT", $dateBegin);  
echo "<br>";        
echo date("MYDATEFORMAT", $dateEnd);

Or the last week

if (date('N', time()) == 7) {
$dateBegin = strtotime("-2 weeks Monday");
$dateEnd = strtotime("last Sunday");
} else {
$dateBegin = strtotime("Monday last week"); 
$dateEnd = strtotime("Sunday last week");   
}

Or the last year

$dateBegin = strtotime("1/1 last year");
$dateEnd = strtotime("12/31 this year");
0

try this to get the number of days in the month:

$numdays = date('t', mktime(0, 0, 0, $m, 1, $Y));
Nate
  • 579
  • 1
  • 7
  • 14
0

Example; I want to get first day and last day of current month.

$month   = (int) date('F');
$year    = (int) date('Y');

date('Y-m-d', mktime(0, 0, 0, $month + 1, 1, $year)); //first
date('Y-m-d', mktime(0, 0, 0, $month + 2, 0, $year)); //last

When you run this for instance at date 2015-01-09, the first and last values will be sequentially;

2015-01-01
2015-01-31

Tested.

csonuryilmaz
  • 1,715
  • 24
  • 24
0

By the way @ZombieSheep solution

date ('Y-m-d', mktime(0,0,0,$MM + 1,-1,$YYYY));

does not work it should be

date ('Y-m-d', mktime(0,0,0,$MM + 1,0,$YYYY)); // Day zero instead of -1

Of course @Michał Słaby's accepted solution is the simplest.

Pat
  • 36,282
  • 18
  • 72
  • 87
0

From here(get next month last day) that is marked as duplicated, so i can't add comment there, but people can got bad answers from there.

Correct one for last day of next month:

echo ((new DateTime(date('Y-m').'-01'))->modify('+1 month')->format('Y-m-t'));

Correct one for first day of next month:

echo ((new DateTime(date('Y-m').'-01'))->modify('+1 month')->format('Y-m-01'));

Code like this will be providing March from January, so that's not what could be expected.

echo ((new DateTime())->modify('+1 month')->format('Y-m-t'));

arturwwl
  • 609
  • 6
  • 9
0

Just to verify that I didn't miss any loose ends:

$startDay = 1;

if (date("m") == 1) {
    $startMonth = 12;
    $startYear = date("Y") - 1;

    $endMonth = 12;
    $endYear = date("Y") - 1;
}
else {
    $startMonth = date("m") - 1;
    $startYear = date("Y");

    $endMonth = date("m") - 1;
    $endYear = date("Y");
}

$endDay = date("d") - 1;

$startDate = date('Y-m-d', mktime(0, 0, 0, $startMonth , $startDay, $startYear));
$endDate = date('Y-m-d', mktime(0, 0, 0, $endMonth, $endDay, $endYear));
Thomas Owens
  • 114,398
  • 98
  • 311
  • 431
0

proper way to build a relative date from now is:

//bad example - will be broken when generated at 30 of December (broken February)
    echo date("Y-m-d", strtotime("now"))."\n";
    echo date("Y-m-d", strtotime("now + 1 month"))."\n";
    echo date("Y-m-d", strtotime("now + 2 month"))."\n";
    echo date("Y-m-d", strtotime("now + 3 month"))."\n";
    
//good example, you can change first day to last day or any day
    echo date("Y-m-d", strtotime("first day of this month"))."\n";
    echo date("Y-m-d", strtotime("first day of next month"))."\n";
    echo date("Y-m-d", strtotime("first day of +2 month"))."\n";
    echo date("Y-m-d", strtotime("first day of +3 month"))."\n";

and the result will be:

2021-12-30
2022-01-30
2022-03-02
2022-03-30

2021-12-01
2022-01-01
2022-02-01
2022-03-01
palmer
  • 1