Skip to content

Instantly share code, notes, and snippets.

@nelsoncbf
Created October 22, 2018 18:31
Show Gist options
  • Save nelsoncbf/c61985844af72163149df12af51f79d0 to your computer and use it in GitHub Desktop.
Save nelsoncbf/c61985844af72163149df12af51f79d0 to your computer and use it in GitHub Desktop.
<?php
//Conversão de hora milessegundos para hora, minuto e segundos.
$contasegundos = floor($row['HORA']/1000);
$horas = floor($contasegundos / 3600);
$minutos = floor(($contasegundos - ($horas * 3600)) / 60);
$segundos = floor($contasegundos % 60);
$row['HORA'] = $horas."h ".$minutos."min ".$segundos."s";
//fim
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment