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")
立即学习“PHP免费学习笔记(深入)”;
当前时间增加一年: 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 '));
以上就是php如何实现当前时间增加天数的详细内容,更多请关注php中文网其它相关文章!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号