gpt4 book ai didi

php - 将天数添加到日期

转载 作者:IT老高 更新时间:2023-10-28 11:47:58 25 4
gpt4 key购买 nike

我想在当前日期加上天数:我正在使用以下代码:

$i=30;
echo $date = strtotime(date("Y-m-d", strtotime($date)) . " +".$i."days");

但我得到的不是正确的日期,而是:2592000

请提出建议。

最佳答案

这应该是

echo date('Y-m-d', strtotime("+30 days"));

strtotime

expects to be given a string containing a US English date format and will try to parse that format into a Unix timestamp (the number of seconds since January 1 1970 00:00:00 UTC), relative to the timestamp given in now, or the current time if now is not supplied.

日期

Returns a string formatted according to the given format string using the given integer timestamp or the current time if no timestamp is given.

查看手册页

及其函数签名。

关于php - 将天数添加到日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2332681/

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