gpt4 book ai didi

PHP 时间 : get next minute/hour what's divisible by five

转载 作者:行者123 更新时间:2023-12-05 05:20:33 24 4
gpt4 key购买 nike

我需要一个代码来检测当前时间并给我接下来的能被 5 整除的时间。

例如:它是:06 03, 2017 21:22:23 ,在 php 中给我 06 03, 2017 21:25:00。我不知道要开始。是否有任何代码或解决方案可以做到这一点?

最佳答案

$now = time();
// Add five minutes in seconds, round it down to the nearest five:
$next = ceil($now/300)*300;
echo date('H:i', $next);

关于PHP 时间 : get next minute/hour what's divisible by five,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44347778/

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