如何使用PHP获得每月的最后一天?
鉴于:
$a_date = "2009-11-23"
我要2009-11-30; 并给予
$a_date = "2009-12-23"
我想要2009-12-31。
如何使用PHP获得每月的最后一天?
鉴于:
$a_date = "2009-11-23"
我要2009-11-30; 并给予
$a_date = "2009-12-23"
我想要2009-12-31。
Answers:
t
返回给定日期的月份中的天数(请参阅文档以获取有关信息date
):
$a_date = "2009-11-23";
echo date("Y-m-t", strtotime($a_date));
DateTime
你一起可以做这样的事情:(new DateTime('2009-11-23'))->modify('last day of')
使用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' );
strtotime
代码为我提供了以下结果:2040-11-30
我知道这有点晚了,但我认为PHP 5.3+
通过使用DateTime类可以做到这一点:
$date = new DateTime('now');
$date->modify('last day of this month');
echo $date->format('Y-m-d');
$date = DateTime::createFromFormat('m/d/Y', '1/10/2014');
还有内置的PHP函数cal_days_in_month()吗?
“此函数将返回指定日历的一年中的天数。” http://php.net/manual/en/function.cal-days-in-month。
echo cal_days_in_month(CAL_GREGORIAN, 11, 2009);
// = 30
这应该工作:
$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/>';
怎么了-对我来说最优雅的使用 DateTime
我想我看不到DateTime::createFromFormat
,一线
$lastDay = \DateTime::createFromFormat("Y-m-d", "2009-11-23")->format("Y-m-t");
您可以为下个月的第一天创建一个日期,然后使用 strtotime("-1 day", $firstOfNextMonth)
mktime(0, 0, 0, $month+1, 0, $year);
strtotime()
和mktime()
。已知的错误,例如月份边缘的日期确定和leap年计算。由于DateTime
可用,您应该使用此类避免将来出现任何问题。就像说过很多次我之前,这两个函数strtotime()
和mktime()
2038年后会失败,这就是为什么我downvoted ...
试试看,如果您使用的是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');
等等..
您可以通过几种方式找到每月的最后一天。但是简单地可以使用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);
如果您对PHP DateTime 使用Carbon API扩展,则可以通过以下方式获得每月的最后一天:
$date = Carbon::now();
$date->addMonth();
$date->day = 0;
echo $date->toDateString(); // use toDateTimeString() to get date and time
$date->day = 0;
如果您有一个月的时间,请获取该月的最后一个日期,
public function getLastDateOfMonth($month)
{
$date = date('Y').'-'.$month.'-01'; //make date of month
return date('t', strtotime($date));
}
$this->getLastDateOfMonth(01); //31
有一些方法可以获取每月的最后一天。
//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]);
我来晚了,但是有几种简单的方法可以做到:
$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也很少。
我已经将它包装在我的日期时间帮助程序类中,在这里
https://github.com/normandqq/Date-Time-Helper
使用
$dateLastDay = Model_DTHpr::getLastDayOfTheMonth();
完成了
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); }
}
您可以使用 ”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";
该代码是不言自明的。希望对您有所帮助。