Skip to content

Instantly share code, notes, and snippets.

@globalideias
Created April 22, 2017 13:46
Show Gist options
  • Select an option

  • Save globalideias/ff69fe288a3f3cfc21846e358a85ffaa to your computer and use it in GitHub Desktop.

Select an option

Save globalideias/ff69fe288a3f3cfc21846e358a85ffaa to your computer and use it in GitHub Desktop.
unidades_x_minutos
<?php
const MINUTOS_UNIDADE = 20;
$total_unidades = 23;
$tempo_total = $total_unidades * MINUTOS_UNIDADE;
$horas = (int)($tempo_total / 60);
$minutos = $tempo_total % 60;
if($minutos > 0){
echo $horas . " Horas e " . $minutos . " Minutos.";
}else{
echo $horas . " Horas";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment