如何找到日期中该月的最后一天?
如何使用PHP获得每月的最后一天?
鉴于:
$a_date = "2009-11-23"
我要2009-11-30; 并给予
$a_date = "2009-12-23"
我想要2009-12-31。
回答:
t
返回给定日期的月份中的天数请参阅文档以获取有关信息date
:
$a_date = "2009-11-23";echo date("Y-m-t", strtotime($a_date));
以上是 如何找到日期中该月的最后一天? 的全部内容, 来源链接: utcz.com/qa/407116.html