Home>Article>Backend Development> PHP converts seconds to duration (h:i:s format)
The content of this article is about converting seconds into duration (h:i:s format) in php. It has certain reference value. Now I share it with you. Friends in need can refer to it
/** * 把秒数转换为时分秒的格式 * @param Int $times 时间,单位 秒 * @return String */ function secToTime($times){ $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; } return $result; }
The above is the detailed content of PHP converts seconds to duration (h:i:s format). For more information, please follow other related articles on the PHP Chinese website!