Forked from sguerrabSV/seconds-to-hours-minutes-seconds.php
Created
January 30, 2024 18:25
-
-
Save Korol/8ff51b9bb2c002de1b02c7d0c3c5fe8e 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