gpt4 book ai didi

php - 将 1 小时添加到时间变量

转载 作者:IT王子 更新时间:2023-10-29 00:56:28 27 4
gpt4 key购买 nike

我有一个时间要加一个小时:

$time = '10:09';

我试过:

$time = strtotime('+1 hour');

strtotime('+1 hour', $time);

$time = date('H:i', strtotime('+1 hour'));

但以上都不起作用。

最佳答案

为我工作..

$timestamp = strtotime('10:09') + 60*60;

$time = date('H:i', $timestamp);

echo $time;//11:09

解释:

strtotime('10:09') 创建一个以秒为单位的数字时间戳,类似于 1510450372。只需添加或删除所需的秒数,然后使用 date() 将其转换回人类可读的格式。

$timestamp = strtotime('10:09') + 60*60; // 10:09 + 1 hour
$timestamp = strtotime('10:09') + 60*60*2; // 10:09 + 2 hours
$timestamp = strtotime('10:09') - 60*60; // 10:09 - 1 hour

time() 还创建了一个数字时间戳,但现在是这样。您可以按相同的方式使用它。

$timestamp = time() + 60*60; // now + 1 hour

关于php - 将 1 小时添加到时间变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8552106/

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