php计算某个月的最后一天是几号
原理:
先将字符串转成时间格式,用date和strtotime两个函数
然后将转成后的时间加一个月再减去一天,得到几号
实例:
$str = "2017-05";
$currDate = date('Y-m-01', strtotime($str)); //获取5月份第一天
echo date('d', strtotime("$currDate +1 month -1 day"));//输出最后一天
先将字符串转成时间格式,用date和strtotime两个函数
然后将转成后的时间加一个月再减去一天,得到几号
实例:
$str = "2017-05";
$currDate = date('Y-m-01', strtotime($str)); //获取5月份第一天
echo date('d', strtotime("$currDate +1 month -1 day"));//输出最后一天
中国· 上海
添加微信咨询
CopyRight©2009-2019 上海谷谷网络科技有限公司 All Rights Reserved. 沪ICP备11022482号-8
- top
- 在线咨询
-
添加微信咨询