摘要:php增加天数的实现方法:1、通过“date('Y-m-d',strtotime("+1 day"))”方法将当前时间增加一天;2、使用“strtotime("+1 month")”方法将当前时间增加一月。推荐:《PHP
php增加天数的实现方法:1、通过“date('Y-m-d',strtotime("+1 day"))”方法将当前时间增加一天;2、使用“strtotime("+1 month")”方法将当前时间增加一月。
推荐:《PHP视频教程》
php日期相加 增加天数,月数的方法
当前时间增加一天: echo date('Y-m-d',strtotime("+1 day"))
当前时间增加一月: strtotime("+1 month")
当前时间增加一年: strtotime("+1 year")
当前时间增加一秒: strtotime("+1 seconds")
已有时间增加一天:
$d='2012-10-11'; eccho date('Y-m-d',strtotime("{$d} +1 day"));
更多的有
echo strtotime( 'yesterday ') echo date( "Ymd ",strtotime( 'last week '));
相关文章推荐
网站谷歌评分90+意味着什么?2022-09-06
怎样将不安全网站变成安全网站访问?2022-09-26
网站排名下降,可能跟算法更新没关系2022-09-20
网站如何设置高质量的网页标题?2022-09-14
做外贸网站选哪些语言?法语、德语最吃香2022-09-13