PHP 将日期,天,年添加到PHP日期()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 将日期,天,年添加到PHP日期()相关的知识,希望对你有一定的参考价值。

$date = date("Y-m-d");
$date = strtotime(date("Y-m-d", strtotime($date)) . " +12 month");
$date = date("Y-m-d",$date);
echo $date;

Other examples
$date = strtotime(date("Y-m-d", strtotime($date)) . " +1 day");
$date = strtotime(date("Y-m-d", strtotime($date)) . " +1 week");
$date = strtotime(date("Y-m-d", strtotime($date)) . " +2 week");
$date = strtotime(date("Y-m-d", strtotime($date)) . " +1 month");
$date = strtotime(date("Y-m-d", strtotime($date)) . " +30 days");

以上是关于PHP 将日期,天,年添加到PHP日期()的主要内容,如果未能解决你的问题,请参考以下文章

php计算两个日期相隔多少年,多少月,多少天

PHP 在php日期添加天,周或月

PHP时间日期操作增减(date strtotime) 加一天 加一月

php如何计算两个日期中间有多少天,并每过一天减1

C 或 C++ 中日历日期的算术(将 N 天添加到给定日期)

PHP:将秒数添加到日期