如何在 PHP 中将分钟四舍五入到最接近的刻钟?

DDD
发布: 2024-11-09 20:49:02
原创
891 人浏览过

How to Round Minutes to the Nearest Quarter Hour in PHP?

PHP 中的分钟四舍五入到最接近的刻钟

考虑需要将 MySQL 数据库中的时间向下舍入到最近的刻钟,其中时间格式为日期时间值(例如 2010-03-18 10:50:00)。目标是实现以下舍入转换:

  • 10:50 至 10:45
  • 1:12 至 1:00
  • 3:28 至 3 :15

为了完成这个任务,我们可以利用 PHP 中的 Floor() 函数。以下步骤概述了该方法:

  1. 使用 strtotime() 函数将日期时间时间戳转换为以秒为单位的时间戳。
  2. 确定以秒为单位的时间,向下舍入到最接近的一刻钟使用 Floor() 和适当的转换系数(15 分钟转换为秒)。
  3. 使用 date() 函数将四舍五入的秒转换回日期时间格式。

这里是一个示例说明该过程:

<?php
// Get the current time and convert it to a timestamp in seconds
$seconds = time();

// Round the timestamp to the nearest quarter hour using floor()
$rounded_seconds = floor($seconds / (15 * 60)) * (15 * 60);

// Convert the rounded seconds back to a datetime format
$original_time = date('h:i', $seconds);
$rounded_time = date('h:i', $rounded_seconds);

// Print the original and rounded times
echo "Original: $original_time" . PHP_EOL;
echo "Rounded: $rounded_time" . PHP_EOL;
?>
登录后复制

注意:如果您想将时间向上舍入到最近的一刻钟而不是向下舍入,请将 Floor() 替换为 ceil()。

以上是如何在 PHP 中将分钟四舍五入到最接近的刻钟?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板