Skip to content

Instantly share code, notes, and snippets.

@nelsoncbf
Created October 22, 2018 18:30
Show Gist options
  • Save nelsoncbf/668a03afeee291a9b3358c51c0cf0fc5 to your computer and use it in GitHub Desktop.
Save nelsoncbf/668a03afeee291a9b3358c51c0cf0fc5 to your computer and use it in GitHub Desktop.
<?php
$hora = 123456;
$h = substr($hora, -6, 2); // retorna "f"
$m = substr($hora, -4, 2); // retorna "ef"
$s = substr($hora, -2); // retorna "d"
$hora2 =$h.$m.$s;
echo $hora2;
echo "<br>", $h, ("h "), $m,("m "), $s, ("s");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment