Created
October 22, 2018 18:30
-
-
Save nelsoncbf/668a03afeee291a9b3358c51c0cf0fc5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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