php sec to hours 2fminuts

Solutions on MaxInterview for php sec to hours 2fminuts by the best coders in the world

showing results for - "php sec to hours 2fminuts"
Stefano
25 Nov 2020
1$hours = floor($seconds / 3600);
2$mins = floor($seconds / 60 % 60);
3$secs = floor($seconds % 60);
4
similar questions
queries leading to this page
php sec to hours 2fminuts