gpt4 book ai didi

php - 使用php从日期中减去天、月或年

转载 作者:行者123 更新时间:2023-12-02 22:59:51 24 4
gpt4 key购买 nike

我有一个带有日期字段的数据库表 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com