Convert Seconds to Minutes PHP
URL: tricksbycinger.blogspot.com
Takes the seconds, and returns minutes. Will wrap it in a function is anyone is interested. Example: 92s -> 1m 32s
Copy this code and paste it in your HTML
$seconds = 60;
echo "seconds = $seconds<br />";
$start_seconds = round($seconds);
if($start_seconds <60)
{
$minutes ="";
$seconds = $start_seconds;
}
else
{
$minutes = floor($start_seconds/60);
$seconds = $start_seconds - $minutes*60;
$minutes = "$minutes"."m";
$seconds = $seconds."s";
}
echo "$minutes $seconds";
Report this snippet