php如何进行日期计算?

2019-10-23T09:29:46
//PHP 日期 加减 周
date("Y-m-d",strtotime("2019-10-23 +1 week"))

//PHP 日期 加减 天数
date("Y-m-d",strtotime("2019-10-23 12:12:12 +1 day"))

//PHP 日期加减小时
date("Y-m-d h:i:s",strtotime("2019-10-23 12:12:12 +1 hour"))

//PHP 日期 加减 月数
date("Y-m-d",strtotime("2013-10-23 12:12:12 +1 month"))

//PHP 日期 加减 分
date("Y-m-d h:i:s",strtotime("2019-10-23 12:12:12 +1 minute"))

//PHP 日期 加减 秒
date("Y-m-d h:i:s",strtotime("2019-10-23 12:12:12 +1 second"))

当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »