Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #change #minutes #hours #carbon
ADD COMMENT
Topic
Name
3+8 =