Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active August 7, 2019 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/1a5b3a963014d3282bafef77fec96f2d to your computer and use it in GitHub Desktop.
Save parzibyte/1a5b3a963014d3282bafef77fec96f2d to your computer and use it in GitHub Desktop.
<?php
function convertirAMinutosYSegundos($segundos)
{
$minutos = floor($segundos / 60);
$segundos = $segundos % 60;
return sprintf("%02d:%02d", $minutos, $segundos);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment