echo date('M',strtotime('first day of +1 month'));
// e.g. "Jan"
echo date('m',strtotime('first day of +1 month'));
// e.g. "1"
echo date('F',strtotime('first day of +1 month'));
// e.g. "January"
// One month from today
$date = date('Y-m-d', strtotime('+1 month'));
// One month from a specific date
$date = date('Y-m-d', strtotime('+1 month', strtotime('2015-01-01')));
6条答案
按热度按时间bxgwgixi1#
如果你想得到下一个不考虑当前日期在当前月份。下面的代码可能会帮助你
这个给予你下个月。
您可以在
date()
函数文档中找到更多格式掩码6ovsh4lw2#
像这样使用
li9yvcax3#
要使用php获取下个月的时间,请使用string to time函数,如下所示:
mo49yndu4#
日期(“m”,开始时间(“2021年8月16日+1个月”));
hkmswyz65#
您可以使用下面的代码获取下个月的第一天。
这比“下个月”或“+1个月”更安全,因为您可能会跳过一些月份。
ovfsdjhp6#
如果你想让下个月和这个月有同一天,或者下个月的最后一天,如果它会切换月份,你可以使用这个函数