在 PHP 中确定日期之间的小时差
您希望计算两个日期之间的小时差,其格式为“ Y-m-d H:i:s。"
要在 PHP 中实现此目的:
将日期转换为时间戳:
时间戳表示自 1970 年 1 月 1 日午夜(以您的服务器时区为准)以来的秒数。要将日期转换为时间戳,请使用 strtotime() 函数:
<code class="php">$timestamp1 = strtotime($date1); $timestamp2 = strtotime($date2);</code>
计算小时差:
减去较早的时间戳后面的时间戳除以 3600 即可得到小时差:
<code class="php">$hourdiff = round(($timestamp1 - $timestamp2) / 3600, 1);</code>
round() 函数用于避免出现很多小数位。
以上是如何在 PHP 中计算日期之间的小时差?的详细内容。更多信息请关注PHP中文网其他相关文章!