编程语言
首页 > 编程语言> > php – 如何将48小时添加到时间戳

php – 如何将48小时添加到时间戳

作者:互联网

我使用此代码从时间戳开始减去48小时

echo date($result2["datetime"], strtotime("-48 hours"));

这工作正常,我想添加48小时,我试过:

echo date($result2["datetime"], strtotime("+48 hours"));

我已经回复了$result2 [“datetime”];它显示格式为Y-m-d H:i:s的时间戳

当我使用时:

echo date('Y-m-d H:i:s', strtotime("+48 hours"));

罚款48小时也增加了

当我使用

echo date($result2["datetime"], strtotime("+48 hours"));

它只是回显了$result2 [“datetime”]返回的相同时间戳;而不是48小时

解决方法:

date()的第一个参数是您希望输出日期的格式.第二个参数是您要格式化的值.在那里你将使用strtotime()来增加你的48小时.

echo date('Y-m-d H:i:s', strtotime($result2["datetime"] . " +48 hours"));

Demo

要么:

echo date('Y-m-d H:i:s', strtotime("+48 hours", strtotime($result2["datetime"])));

Demo

不过,这有点难看.我建议使用DateTime()代替:

echo (new DateTime($result2["datetime"]))->modify('+48 hours')->format('Y-m-d H:i:s');

Demo

标签:php,date,date-math
来源: https://codeday.me/bug/20190725/1529505.html