码迷,mamicode.com
首页 > Web开发 > 详细

php计算时间差是什么时间之后

时间:2018-01-25 16:49:42      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:func   http   span   img   floor   format   ima   inf   时间   

技术分享图片

做出来的效果就是上面这样。

代码:

function timeformat($time){
    $day = $hour = $min = $sec = 0;
    $day  = floor($time/86400);
    $hour = floor(($time%86400)/3600);
    $min = floor(($time%3600)/60);
    $sec = $time%3600%60;
    $str = "";
    if ($day) $str.="{$day}天,";
    if ($hour) $str.="{$hour}小时,";
    if ($min)  $str.="{$min}分钟,";
    if ($sec)  $str.="{$sec}秒后";
    return $str;
}

$time参数为秒数。

php计算时间差是什么时间之后

标签:func   http   span   img   floor   format   ima   inf   时间   

原文地址:https://www.cnblogs.com/doubilaile/p/8351642.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!