Skip to content

Instantly share code, notes, and snippets.

@pavarov
Last active May 19, 2022 12:35
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 pavarov/74420730fa04843a2c3150636899a567 to your computer and use it in GitHub Desktop.
Save pavarov/74420730fa04843a2c3150636899a567 to your computer and use it in GitHub Desktop.
<?php
public function getGUID(): string
{
if (function_exists('com_create_guid') === true) {
return trim(com_create_guid(), '{}');
}
return sprintf('%04X%04X-%04X-%04X-%04X-%04X%04X%04X', mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(16384, 20479), mt_rand(32768, 49151), mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment