Skip to content

Instantly share code, notes, and snippets.

@lenivene
Created October 26, 2019 16:08
Show Gist options
  • Save lenivene/f0f0c49333d3debc3f7591a9fb60c2ae to your computer and use it in GitHub Desktop.
Save lenivene/f0f0c49333d3debc3f7591a9fb60c2ae to your computer and use it in GitHub Desktop.
Unique IDentifiers
<?php
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