Skip to content

Instantly share code, notes, and snippets.

@FatihBAKIR
Created October 18, 2014 06:41
Show Gist options
  • Save FatihBAKIR/29a64ab1e937bba8fc0a to your computer and use it in GitHub Desktop.
Save FatihBAKIR/29a64ab1e937bba8fc0a to your computer and use it in GitHub Desktop.
function ZeroFill($input, $len)
{
while(strlen($input) < $len)
$input = "0".$input;
return $input;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment