如何使用php获取本月的最后一天?
<?php
echo date('?-?-?');
?>
答案 0 :(得分:10)
<?php
$day=new DateTime('last day of this month');
echo $day->format('M jS');
?>
答案 1 :(得分:9)
date function documentation表示t
表示当月的天数:
$day = date( 't-m-Y' );
答案 2 :(得分:8)
试试这个
$day=date('Y-m-t'); // gives last day of current month
或强>
$d = new DateTime( '2013-05-03' );
echo $d->format( 'Y-m-t' );
答案 3 :(得分:4)
尝试:
$last_day = date('t-m-Y');
其中t
表示当月的最后一个日期。
How can I find the first and last date in a month using PHP?
答案 4 :(得分:1)
答案 5 :(得分:1)
试试这个
$date = new DateTime();
$lastDayOfMonth = $date->modify(
sprintf('+%d days', $date->format('t') - $date->format('j'))
);