Skip to content

Instantly share code, notes, and snippets.

@platoosom
Created June 16, 2016 09:47
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/1378ea8f711197036f345b74f9fa639c to your computer and use it in GitHub Desktop.
Save platoosom/1378ea8f711197036f345b74f9fa639c to your computer and use it in GitHub Desktop.
$number = '1';
$prefix = '0000';
$result = '';
$result = $prefix.$number;
$result = substr($result,-4);
echo $result;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment