Skip to content

Instantly share code, notes, and snippets.

@platoosom
Created June 16, 2016 09:42
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 platoosom/e05f74466933ee60f72ba7e3591a1cac to your computer and use it in GitHub Desktop.
Save platoosom/e05f74466933ee60f72ba7e3591a1cac to your computer and use it in GitHub Desktop.
$number = '1';
$max = 4;
$prefix = '0';
$result = '';
$length = strlen($number);
$loop = $max-$length;
for($i=$loop; $i>0; $i--){
$result .= $prefix;
}
$result .= $number;
echo $result;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment