Skip to content

Instantly share code, notes, and snippets.

@jrivero
Last active February 21, 2024 11:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrivero/1151122 to your computer and use it in GitHub Desktop.
Save jrivero/1151122 to your computer and use it in GitHub Desktop.
Create uuid with specific dimensions
<?php
function uuid_pad($pad = 6)
{
return substr(md5(uniqid(rand(), true)), $pad, $pad);
}
// example
echo uuid_pad();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment