Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Hours to minute convert in php

function hoursTominutes($time){
    $time = explode(':', $time);
    return ($time[0]*60) + ($time[1]) + ($time[2]/60);
}
 
PREVIOUS NEXT
Tagged: #Hours #minute #convert #php
ADD COMMENT
Topic
Name
5+3 =