php将秒数转换为小时数 0 By 董德多 on 2019年6月21日 PHP php将秒数转换为小时数函数: function second_to_hour($time){ //$time 秒数 return floor($time/3600); } 小时