Categories: Development

Converting minutes to hours and minutes with PHP

If you have a variable reading 27654 which actually means 27,654 minutes and you wanted to convert this number and output it into hours and minutes here is how:

The magic function

function hoursandmins($time, $format = '%02d:%02d')
{
    if ($time < 1) {
        return;
    }
    $hours = floor($time / 60);
    $minutes = ($time % 60);
    return sprintf($format, $hours, $minutes);
}

The hoursandmins function takes a number and if that number is greater than 1 return it in the format (Hours, Minutes) like so

echo hoursandmins('188', '%02d Hours, %02d Minutes');

this will output 3 Hours, 8 Minutes

Its a very nifty function that you will need if doing work with an API such as Steams.

If you want to make it even more compact and read like 3H,8M

simply change the format like so echo hoursandmins('188', '%02dH,%02dM');

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

2 years ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

2 years ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

3 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

3 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

3 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

3 years ago