Skip to content

Instantly share code, notes, and snippets.

@opotemkin
Created March 10, 2017 15:06
Show Gist options
  • Save opotemkin/6bb3a450e72f913d8fb52c32c9eca92f to your computer and use it in GitHub Desktop.
Save opotemkin/6bb3a450e72f913d8fb52c32c9eca92f to your computer and use it in GitHub Desktop.
Create 0000001 from 1
$this->id = 1;
$id = str_pad($this->id, 6, '0', STR_PAD_LEFT);
echo $id; // 000001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment