php strtotime日期相加 增加天数,月数的方法
//当前时间增加一天:
strtotime("+1 day")
//当前时间增加一月:
strtotime("+1 month")
//当前时间增加一年:
strtotime("+1 year")
//当前时间增加一小时:
strtotime("+1 hour")
//当前时间增加一秒:
strtotime("+1 seconds")
//转化为日期格式
echo date('Y-m-d',strtotime("+1 day"))
//计算月份天数
date('t',strtotime('2022-11'));