Answers for "convert sec to hours and min php"

PHP
3

seconds to minutes php

echo gmdate("H:i:s", 685);
Posted by: Guest on August-04-2020
0

php sec to hours/minuts

$hours = floor($seconds / 3600);
$mins = floor($seconds / 60 % 60);
$secs = floor($seconds % 60);
Posted by: Guest on September-09-2021

Code answers related to "convert sec to hours and min php"

Browse Popular Code Answers by Language