作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有日期字段的数据库表 startBefore
在('Y-m-d')
格式。还有其他 3 个 int 字段,分别代表年、月和日。我想做的就是将这三个字段填充为新的 startAfter
日期 'Y-m-d'
格式。
例如,我将“2001-11-14”设置为 startBefore
日期,我想减去 3 年 7 个月 1 天来得到 startAfter
日期。
有什么想法可以实现这一点吗?
谢谢!
最佳答案
使用strtotime('date -years -months -days')
<?php
$time = strtotime('2001-11-14 -3 years -7 months -5 days');
echo $date = date("Y-m-d", $time);
关于php - 使用php从日期中减去天、月或年,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20901760/
我是一名优秀的程序员,十分优秀!