Skip to content

Instantly share code, notes, and snippets.

@imiroslavov
Created July 19, 2019 14:21
Show Gist options
  • Save imiroslavov/2e93aa3e2b83cd8d906829066531451a to your computer and use it in GitHub Desktop.
Save imiroslavov/2e93aa3e2b83cd8d906829066531451a to your computer and use it in GitHub Desktop.
function gen_uuid()
{
return sprintf(
'%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
mt_rand(0, 0xffff),
mt_rand(0, 0xffff),
mt_rand(0, 0xffff),
mt_rand(0, 0x0fff) | 0x4000,
mt_rand(0, 0x3fff) | 0x8000,
mt_rand(0, 0xffff),
mt_rand(0, 0xffff),
mt_rand(0, 0xffff)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment