Skip to content

Instantly share code, notes, and snippets.

@mtrbean
Last active August 29, 2015 14:14
Show Gist options
  • Save mtrbean/32f4b99122a7f39fea3a to your computer and use it in GitHub Desktop.
Save mtrbean/32f4b99122a7f39fea3a to your computer and use it in GitHub Desktop.
PHP UUID v4
function UUIDv4()
{
$data = openssl_random_pseudo_bytes(16);
$data[6] = chr(ord($data[6]) & 0x0f | 0x40); // set version to 0100
$data[8] = chr(ord($data[8]) & 0x3f | 0x80); // set bits 6-7 to 10
return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment