gpt4 book ai didi

php - 在 PHP 中添加时间

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

如何在 PHP 中添加给定的时间?

下面是我想添加的三个时间变量:

time1: "00:02:00"
time2: "00:15:00"
time3: "00:08:00"

这是我尝试实现该目标的方法:

echo date('h:i:s', strtotime('00:02:00') + strtotime('00:15:00') + strtotime('00:08:00'));

我的代码的结果是 12:25:00,而预期的结果应该是 00:25:00.

我做错了什么以及如何在 PHP 中有效地添加给定的时间变量?

最佳答案

h变为H

h => 带前导零的 12 小时制小时格式

H => 带前导零的 24 小时制小时格式

尝试

echo date('H:i:s', strtotime('00:02:00') + strtotime('00:15:00') + strtotime('00:08:00'));

Reference

关于php - 在 PHP 中添加时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41262126/

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