Skip to content

Instantly share code, notes, and snippets.

@coderdiaz
Last active August 29, 2015 14:09
Show Gist options
  • Save coderdiaz/7aedf18b313e3a468822 to your computer and use it in GitHub Desktop.
Save coderdiaz/7aedf18b313e3a468822 to your computer and use it in GitHub Desktop.
Uso de STR_PAD
<?php
$cadena = "1";
echo str_pad($cadena, 3, "0", STR_PAD_LEFT);
?>
@coderdiaz
Copy link
Author

El resultado es: 001.

@coderdiaz
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment