gpt4 book ai didi

php 只处理时间

转载 作者:行者123 更新时间:2023-12-04 22:24:23 25 4
gpt4 key购买 nike

我在我的 php 脚本中使用时间戳来处理以小时、分钟和秒为单位的时间。时间戳也记录日期,但我只使用时间 00:00:00

例如我计算时间差

$start = strtotime("12:00:00");
$end = strtotime("20:00:00");

$difference = $end - $start;

或划分时间

$divide = $difference/3;

我应该继续为这些操作使用时间戳还是 php 中是否有特定于时间的函数?

最佳答案

如何使用 DateTime 执行此操作的示例:

$d1 = new DateTime('11:00:00');
$d2 = new DateTime('04:00:00');

$diff = $d1->diff($d2);

echo $diff->h, " hours ", $diff->i, " minutes\n";

输出:

7 hours 0 minutes

关于php 只处理时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10925489/

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