Skip to content

Instantly share code, notes, and snippets.

@itsrachelfish
Created May 9, 2019 06:33
Show Gist options
  • Save itsrachelfish/a7f534a6c1437d4a607561dc88912280 to your computer and use it in GitHub Desktop.
Save itsrachelfish/a7f534a6c1437d4a607561dc88912280 to your computer and use it in GitHub Desktop.
str_pad
php > echo str_pad(6, 2, 0, STR_PAD_LEFT);
06
php > echo str_pad(10, 2, 0, STR_PAD_LEFT);
10
php > echo str_pad(12, 2, 0, STR_PAD_LEFT);
12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment