Skip to content

Instantly share code, notes, and snippets.

@ryanapil
Created April 4, 2023 15:54
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 ryanapil/852f12e04a9f4f4b8d4a9c1f44ba3c6e to your computer and use it in GitHub Desktop.
Save ryanapil/852f12e04a9f4f4b8d4a9c1f44ba3c6e to your computer and use it in GitHub Desktop.
UUID Function
function uuid($data = null) {
$data = $data ?? random_bytes(16);
assert(strlen($data) == 16);
$data[6] = chr(ord($data[6]) & 0x0f | 0x40);
$data[8] = chr(ord($data[8]) & 0x3f | 0x80);
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