当前位置:Gxlcms > PHP教程 > 如何优雅的输出指定时间的分钟数?

如何优雅的输出指定时间的分钟数?

时间:2021-07-01 10:21:17 帮助过:29人阅读

输出当前时间还为到来的以指定分钟尾数结尾的的分钟数,
如指定7 14:56:21->14:57:00
14:57:21->15:07:00
自己写了个 感觉不够简单

function get_minutes($dest){
    $start1 =new DateTime();
    $date = $start1 ->format('Y-m-d-H-i-s');
    list($year,$mon,$day,$hour,$min,$sec) = explode('-',$date);
    $start2 = new DateTime($year.'-'.$mon.'-'.$day.' '.$hour.':'.$min);
    $needle = floor($min/10)*10 +$dest;
    $needle = $needle > $min ? $needle : $needle +10;
    $extra = $needle - $min;
    $timestr = '+ '.$extra.' minutes';
    $start2->modify($timestr);
    return $start2->format('Y-m-d H:i:s');
}
echo get_minutes(7);

回复内容:

输出当前时间还为到来的以指定分钟尾数结尾的的分钟数,
如指定7 14:56:21->14:57:00
14:57:21->15:07:00
自己写了个 感觉不够简单

function get_minutes($dest){
    $start1 =new DateTime();
    $date = $start1 ->format('Y-m-d-H-i-s');
    list($year,$mon,$day,$hour,$min,$sec) = explode('-',$date);
    $start2 = new DateTime($year.'-'.$mon.'-'.$day.' '.$hour.':'.$min);
    $needle = floor($min/10)*10 +$dest;
    $needle = $needle > $min ? $needle : $needle +10;
    $extra = $needle - $min;
    $timestr = '+ '.$extra.' minutes';
    $start2->modify($timestr);
    return $start2->format('Y-m-d H:i:s');
}
echo get_minutes(7);

先来分析一下需求,需要的分钟分别是7分,10+7分,20+7分,30+7分,40+7分,50+7分;另外57分到下一个节点7分也是相差10分钟。
因为格林威治时间1970年01月01日00时00分00秒起至现在的总秒数。
第一个7分是420秒,之后都是增加600秒。
需要补的秒数就是:先当前时间除以600的余数,小于420就直接用420去减,大于就用600+420去减。

$time = time();
echo date('Y-m-d H:i:s',$time);
$last = $time%600;
$last = $last<420?420-$last:1020-$last;
echo '
'; echo date('Y-m-d H:i:s',$time+$last);

function get_minutes($dest) {
    if ($dest >= 10) {
        throw new Exception('param error!');
    }
    $mitute = date('i');
    $unit   = $mitute % 10;//个位分钟数
    $offset = $dest - $unit;
    if ($dest <= $unit) {
        $offset += 10;
    }
    return date('Y-m-d H:i:00', strtotime('+' . $offset . ' minutes'));
}

echo get_minutes(7);

好奇怪的需求..
我看你的代码写的有点复杂, 其实思路很简单的.
就是看分钟的个位数是不是大于7, 如果大于7, 就用17-个位数, 否则用7-个位数. 算出来的就是下个尾数为7的分钟数与当前分钟的差了.然后加上这个差不就行了?

$date = new DateTime();
$minute = $date->format('i');
$diff_minute = $minute[1] >= 7 ? (17 - $minute[1]) : (7 - $minute[1]);
$date->add(new DateInterval("PT" . $diff_minute . 'M'));
echo $date->format('Y-m-d H:i:s');

给个示例, 为了方便, 把7硬编码在里面了. 根据你的需求改改就能用了.

人气教程排行