PHP 中的分钟四舍五入到最近的刻钟
将 MySQL 'datetime' 列中存储的时间四舍五入到最近的刻钟小时,我们可以利用 'floor()' 函数。
$sql = "SELECT datetime_column FROM table_name"; $result = mysqli_query($conn, $sql); while ($row = mysqli_fetch_assoc($result)) { $timestamp = strtotime($row['datetime_column']); $rounded_time = floor($timestamp / (15 * 60)) * (15 * 60); // Convert the rounded timestamp back to a time string $rounded_time_string = date('H:i', $rounded_time); }
在此示例:
示例:
$timestamp = strtotime('2010-03-18 10:50:00'); $rounded_time = floor($timestamp / (15 * 60)) * (15 * 60); echo date('H:i', $rounded_time); // Output: 10:45
请注意,此方法也可用于将 'floor()' 替换为'ceil()'.
以上是如何在 PHP 中将日期时间向下舍入到最接近的刻钟?的详细内容。更多信息请关注PHP中文网其他相关文章!