Convert Hour to Minute Script

Convert Hour to Minute Script is use to convert hours to minutes formats.

Demo :



    Hours : Minute :  

Example :

Type Hours : 2 Type Minutes : 33

Code :

Following code is use to convert hours to minutes formats if you need to copy and use to your website.


<?php
  $hhmm=" 2:33 ";
  $arr = explode(":", $hhmm);
  echo $arr[0]*60 + $arr[1] . " minutes";
?>

Given a string in hh:mm format, the explode() function splits it on the colon (:) separator, converts the first element from hours to minutes by multiplying it by 60, and then adds the second element to get the total number of minutes.

Free Download Script :

If you need Convert Hour to Minute Script click and download from following link.

Download




Content