php将秒数转换为小时数函数:


function second_to_hour($time){
    //$time 秒数
    return floor($time/3600);
}