Skip to content

Instantly share code, notes, and snippets.

@samuelwilliams
Last active August 4, 2021 10:32
Show Gist options
  • Save samuelwilliams/682b0bed96a03e00d1bd41b7263cc579 to your computer and use it in GitHub Desktop.
Save samuelwilliams/682b0bed96a03e00d1bd41b7263cc579 to your computer and use it in GitHub Desktop.
Generates a UUID in 8-4-4-4-12 notation
<?php
function uuid() {
$s = bin2hex(random_bytes(16));
return sprintf('%s-%s-%s-%s-%s',
substr($s, 0, 8),
substr($s, 8, 4),
substr($s, 12, 4),
substr($s, 16, 4),
substr($s, 20, 12)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment