gpt4 book ai didi

php - 将两个小时添加到当前时间戳

转载 作者:行者123 更新时间:2023-12-05 01:47:55 25 4
gpt4 key购买 nike

我有以下语法:

$today = date("Y-m-d H:i:s");

$modtime = date( "Y-m-d H:i:s", strtotime( $today ) + (2*60 * 60));

我想在当前时间戳上加上两个小时,但我一直在从上面的语法中获取当前时间戳。我怎样才能让它选择时间戳+ 2小时?

最佳答案

你可以这样加2小时

$today = date("Y-m-d H:i:s");
strtotime('+2 hours', strtotime( $today ));

您可以使用 strtotime('+2 hours')。默认的第二个参数是 time() 今天的时间戳。

check manual

关于php - 将两个小时添加到当前时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20248537/

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