Answers for "convert minutes to hours and minutes php"

PHP
0

php convert minutes to hours and minutes

$hours = floor($final_time_saving / 60);
$minutes = $final_time_saving % 60;
Posted by: Guest on March-04-2021
0

change minutes in to hours carbon

You can use:
----------------
$minutes = 1510;
$hours = intdiv($minutes, 60).':'. ($minutes % 60);
!!! This only works with php >= v7.xx

Previous answer:
-------------------
$minutes = 1510;
$hours = floor($minutes / 60).':'.($minutes - floor($minutes / 60) * 60);
Posted by: Guest on July-24-2020

Code answers related to "convert minutes to hours and minutes php"

Browse Popular Code Answers by Language