The Easiest Way to Save and Share Code Snippets on the web

Seconds to H:i:s

php | by: quenerapu

last edit: Feb, 14th 2009 | jump to bottom

<?php
function s2His($s)
	{
	$r=sprintf("%02d",intval(intval($s)/3600)).":".
	sprintf("%02d",bcmod((intval($s)/60),60)).":".
	sprintf("%02d",bcmod(intval($s),60));
	return $r;
	}
?>
114 views