Skip to content

Instantly share code, notes, and snippets.

@negasus
Created December 15, 2020 10:30
Show Gist options
  • Save negasus/52c875268a02e7698d7a873c59d7c593 to your computer and use it in GitHub Desktop.
Save negasus/52c875268a02e7698d7a873c59d7c593 to your computer and use it in GitHub Desktop.
php simple uuid 4
function 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