function seotools_format_time_on in Drupal SEO Tools 6
Same name and namespace in other branches
- 7 seotools.report.inc \seotools_format_time_on()
1 call to seotools_format_time_on()
File
- ./
seotools.report.inc, line 224
Code
function seotools_format_time_on($time) {
$h = floor($time / 3600);
$m = floor(($time - $h * 3600) / 60);
$s = $time % 60;
return ($h < 10 ? '0' : '') . "{$h}:" . ($m < 10 ? '0' : '') . "{$m}:" . ($s < 10 ? '0' : '') . $s;
}