Forked from jgornick/seconds-to-hours-minutes-seconds.php
Last active
January 30, 2024 18:25
-
-
Save sguerrabSV/a666972a323701295f32e81146d12f0e to your computer and use it in GitHub Desktop.
PHP: Convert seconds to hours:minutes:seconds.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$startTime = time() - 7389; | |
$diff = microtime(true) - $startTime; | |
$format = sprintf('%02d:%02d:%02d', ($diff / 3600), ($diff / 60 % 60), $diff % 60); | |
echo $format; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment