来源:未知 时间:2014-12-11 09:37 作者:xxadmin 阅读:次
[导读] 我们在处理时间时,需要计算当前时间距离某个时间点的时长,如计算客户端运行时长,通常用hh:mm:ss表示。 1 function changeTimeType( $seconds ) { 2 3 if ( $seconds 3600 ) { 4 5 $hours = intval ( $second...
我们在处理时间时,需要计算当前时间距离某个时间点的时长,如计算客户端运行时长,通常用hh:mm:ss表示。 1 function changeTimeType($seconds) { 2 3 if ($seconds > 3600) { 4 5 $hours = intval($seconds / 3600); 6 7 $minutes = $seconds % 3600; 8 9 $time = $hours . ":" . gmstrftime('%M:%S', $minutes); 10 11 } else { 12 13 $time = gmstrftime('%H:%M:%S', $seconds); 14 15 } 16 17 return $time; 18 19 } 20 21 //使用方法如下 22 23 $seconds = 3712; 24 25 echo changeTimeType($seconds);
|
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习
京ICP备14009008号-1@版权所有www.zixuephp.com
网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com