码迷,mamicode.com
首页 > 其他好文 > 详细

考试用时存入秒数,最后用方法转换一成这种格式 (00:00:00)

时间:2017-09-19 15:04:08      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:logs   mes   his   考试   style   log   second   blog   code   

//考试用时
        $times = 60;//秒数
        $result = ‘00:00:00‘;
        if ($times>0) {
                $hour = floor($times/3600);  
                $minute = floor(($times-3600 * $hour)/60);  
                $second = floor((($times-3600 * $hour) - 60 * $minute) % 60);  
                $result = $hour.‘:‘.$minute.‘:‘.$second;
        }  

        $this->yongshi = $result;//考试用时    

 

考试用时存入秒数,最后用方法转换一成这种格式 (00:00:00)

标签:logs   mes   his   考试   style   log   second   blog   code   

原文地址:http://www.cnblogs.com/zc290987034/p/7551146.html

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