Pastetool #247

URL: , Paste another

<?php
	function secs_hms($secs){
	$hms = "";
    $hrs = intval(intval($secs) / 3600); 
	if($hrs){
		$hms .= "$hrs".'h';
	}
    $minutes = intval(($secs / 60) % 60); 
	$hms .= $minutes.'m';
	$seconds = intval($secs % 60); 
	$hms .= $seconds.'s';
	return $hms;
	}
?>

Download code

This php code was pasted on January 13, 2010




Protected with advance Anti-SPAM techniques :)
Coded and designed by Fedmich
Follow us on Twitter