如何找到日期中该月的最后一天?


Answers:


805

t返回给定日期的月份中的天数(请参阅文档以获取有关信息date):

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

99
这将在2038年之后失败。因此,应该使用DateTime函数代替strtotime。以下代码可以正常使用2038年:$ d = new DateTime('2009-11-23'); echo $ d-> format('Ymt');
2012年

74
@Mugunth如果您使用的是未来24年的日期,则可能早于2038年就会遇到问题,但是,服务器已经移至64位体系结构,这将使我们有大约2,920亿年的时间来解决问题。

1
在程序中-> $ date1 = $ year .'-'。$ month; $ d = date_create_from_format('Y-m',$ date1); $ last_day = date_format($ d,'t');
kayla

11
DateTime你一起可以做这样的事情:(new DateTime('2009-11-23'))->modify('last day of')
维克多

如果您使用的是Carbon PHP,则可以使用daysInMonth getter
astroanu

119

使用strtotime()的代码将在2038年之后失败。(如该线程的第一个答案所示)例如,尝试使用以下代码:

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

它将给出答案为:1970-01-31

因此,应使用DateTime函数代替strtotime。以下代码可以正常使用2038年:

$d = new DateTime( '2040-11-23' ); 
echo $d->format( 'Y-m-t' );

17
届时我将71岁退休,所以这对我来说不是问题!j / k但请认真的人-请注意此警告!
Volomike

17
假定您正在运行32位版本的PHP。

为什么关于strtotime的这个令人震惊的事实在php docu php.net/manual/de/function.strtotime.php中没有提及?
亚当

1
@Adam现在,不确定是不是在您检查时。php.net/manual/de/…–
Mave

1
截至2018年,strtotime代码为我提供了以下结果:2040-11-30
Jee

104

我知道这有点晚了,但我认为PHP 5.3+通过使用DateTime类可以做到这一点:

$date = new DateTime('now');
$date->modify('last day of this month');
echo $date->format('Y-m-d');

20
一行:$ date = new DateTime('这个月的最后一天');
哈罗德

6
您可能要添加$ date-> modify('本月的最后一天')-> setTime(23,59,59); 如果您想使用此dateTime进行比较,则需要时间。(这为您提供了本月的最后一秒)
omgitsdrobinoha's

5
这有效:$date = new DateTime('last day of 2020-2');

4
@约翰,你错了。最后一天是使用$ date对象而不是系统日期计算的。通过更改第一行来尝试:$date = DateTime::createFromFormat('m/d/Y', '1/10/2014');
Hannoun Yassir

5
如果您考虑或至少尝试了我要求您执行的操作,您会看到该月份表示DateTime对象中月份的值,而不是系统的日期。:如果您无法键入/运行PHP代码这可能帮助sandbox.onlinephpfunctions.com/code/...
Hannoun亚瑟尔


24

这应该工作:

$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/>';


17

您可以为下个月的第一天创建一个日期,然后使用 strtotime("-1 day", $firstOfNextMonth)


使用相同方法的另一种方法是给mktime下个月的第0天mktime(0, 0, 0, $month+1, 0, $year);
乔治

对我而言,不建议使用strtotime()mktime()。已知的错误,例如月份边缘的日期确定和leap年计算。由于DateTime可用,您应该使用此类避免将来出现任何问题。就像说过很多次我之前,这两个函数strtotime()mktime()2038年后会失败,这就是为什么我downvoted ...
保罗T. Rawkeen

@ PaulT.Rawkeen这个答案已有4年了。与互联网上的任何内容一样,年龄在衡量相关性和实用性时应该成为一个因素。此外,恕我直言,与技术相关的任何事物的减半时间特别短。
nikc.org 2013年

@ nikc.org我同意,尤其是关于所有技术解决方案的生命周期以及解决问题的方式。在这种特殊情况下,答案具有相对较高的投票数,并且可能有人(初级程序员)会将此答案视为可接受的解决方案bec。它简短而优雅:),他可能会得到预期的结果,但是随着时间的流逝,解决此类问题的方法变得棘手,我们应该在可能的情况下对此类事实提出警告。亲切的问候
Paul T. Rawkeen

16

试试看,如果您使用的是PHP 5.3+,

$a_date = "2009-11-23";
$date = new DateTime($a_date);
$date->modify('last day of this month');
echo $date->format('Y-m-d');

要查找下个月的上一个日期,请进行以下修改,

 $date->modify('last day of 1 month');
 echo $date->format('Y-m-d');

等等..



10

您可以通过几种方式找到每月的最后一天。但是简单地可以使用PHP strtotime()date()函数来完成此操作,我想您的最终代码将如下所示:

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

现场演示

但是,如果您使用的PHP> = 5.2,我强烈建议您使用新的DateTime对象。例如下面的例子:

$a_date = "2009-11-23";
$date = new DateTime($a_date);
$date->modify('last day of this month');
echo $date->format('Y-m-d');

现场演示

另外,您可以使用自己的函数来解决此问题,如下所示:

/**
 * Last date of a month of a year
 *
 * @param[in] $date - Integer. Default = Current Month
 *
 * @return Last date of the month and year in yyyy-mm-dd format
 */
function last_day_of_the_month($date = '')
{
    $month  = date('m', strtotime($date));
    $year   = date('Y', strtotime($date));
    $result = strtotime("{$year}-{$month}-01");
    $result = strtotime('-1 second', strtotime('+1 month', $result));

    return date('Y-m-d', $result);
}

$a_date = "2009-11-23";
echo last_day_of_the_month($a_date);

感谢您的功能,它按我预期的那样工作:)
Mankeomorakort

7

如果您对PHP DateTime 使用Carbon API扩展,则可以通过以下方式获得每月的最后一天:

$date = Carbon::now();
$date->addMonth();
$date->day = 0;
echo $date->toDateString(); // use toDateTimeString() to get date and time 

实际上,如果将day设置为-1,它将得到最后一个,但只有一个。因此,必须将day设置为0才能获得最后一天。$date->day = 0;
Giovanne Afonso 2014年

谢谢@GiovanneAfonso,那是正确的。我将日期设置为0并测试了答案。
eaykin

1
如果使用的是Carbon,则使用一种方法:Carbon :: Now()-> endOfMonth()。但是,endOfMonth()是修饰符,因此,如果您有一个包含Carbon日期(或日期将被修改)的现有变量,请使用“ clone”。
查理·达萨斯

4

您也可以将其与datetime一起使用

$date = new \DateTime();
$nbrDay = $date->format('t');
$lastDay = $date->format('Y-m-t');

4
$date1 = $year.'-'.$month; 
$d = date_create_from_format('Y-m',$date1); 
$last_day = date_format($d, 't');


2

如果您有一个月的时间,请获取该月的最后一个日期,

public function getLastDateOfMonth($month)
    {
        $date = date('Y').'-'.$month.'-01';  //make date of month 
        return date('t', strtotime($date)); 
    }

$this->getLastDateOfMonth(01); //31

1

这是一个完整的功能:

public function get_number_of_days_in_month($month, $year) {
    // Using first day of the month, it doesn't really matter
    $date = $year."-".$month."-1";
    return date("t", strtotime($date));
}

这将输出以下内容:

echo get_number_of_days_in_month(2,2014);

输出:28


1

有一些方法可以获取每月的最后一天。

//to get last day of current month
echo date("t", strtotime('now'));

//to get last day from specific date
$date = "2014-07-24";
echo date("t", strtotime($date));

//to get last day from specific date by calendar
$date = "2014-07-24";
$dateArr=explode('-',$date);
echo cal_days_in_month(CAL_GREGORIAN, $dateArr[1], $dateArr[0]); 

1

我来晚了,但是有几种简单的方法可以做到:

$days = date("t");
$days = cal_days_in_month(CAL_GREGORIAN, date('m'), date('Y'));
$days = date("j",mktime (date("H"),date("i"),date("s"),(date("n")+1),0,date("Y")));

使用mktime()可以完全控制时间的各个方面... IE

echo "<br> ".date("Y-n-j",mktime (date("H"),date("i"),date("s"),(11+1),0,2009));

将日期设置为0并将您的月份上移1,将为您提供上个月的最后一天。0和负数在不同的论点中具有相似的影响。 PHP:mktime-手册

正如少数人所说的那样,strtotime并不是最可靠的方式,如果没有那么容易的话,strtotime也很少。


1

我正在将strtotime与cal_days_in_month一起使用,如下所示:

$date_at_last_of_month=date('Y-m-d', strtotime('2020-4-1
+'.(cal_days_in_month(CAL_GREGORIAN,4,2020)-1).' day'));


0

另一种使用mktime而不是date('t')的方式:

$dateStart= date("Y-m-d", mktime(0, 0, 0, 10, 1, 2016)); //2016-10-01
$dateEnd = date("Y-m-d", mktime(0, 0, 0, 11, 0, 2016)); //This will return the last day of october, 2016-10-31 :)

因此,它以这种方式计算是31,30还是29


0

用于PHP DateTime的Carbon API扩展

Carbon::parse("2009-11-23")->lastOfMonth()->day;

要么

Carbon::createFromDate(2009, 11, 23)->lastOfMonth()->day;

将返回

30

-1
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


-2

这是到月底的更优雅的方法:

  $thedate = Date('m/d/Y'); 
  $lastDayOfMOnth = date('d', mktime(0,0,0, date('m', strtotime($thedate))+1, 0, date('Y', strtotime($thedate)))); 

-3

您可以使用 ”t在日期功能中 ”来获取特定月份的天数。

该代码将是这样的:

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";

该代码是不言自明的。希望对您有所帮助。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.