Skip to content

Instantly share code, notes, and snippets.

@asathoor
Created July 28, 2015 10:53
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 asathoor/eb8250bf4061d7664b05 to your computer and use it in GitHub Desktop.
Save asathoor/eb8250bf4061d7664b05 to your computer and use it in GitHub Desktop.
<?php
/* Count: 001 002 003 */
$invID = 11; // sample
$invID = str_pad($invID, 3, '0', STR_PAD_LEFT); // str_pad(counter,numberlentth,addNumber,whereToAdd)
echo $invID; // 011
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment