Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sguerrabSV/a666972a323701295f32e81146d12f0e to your computer and use it in GitHub Desktop.
Save sguerrabSV/a666972a323701295f32e81146d12f0e to your computer and use it in GitHub Desktop.
PHP: Convert seconds to hours:minutes:seconds.
<?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