欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP 生成GUID(UUID)

程序员文章站 2024-01-02 12:21:16
...

PHP 生成GUID(UUID)
  1. /**
  2. * 生成GUID(UUID)
  3. * @access public
  4. * @return string
  5. * @author knight
  6. */
  7. function createGuid()
  8. {
  9. if (function_exists('com_create_guid')){
  10. return com_create_guid();
  11. }else{
  12. mt_srand((double)microtime()*10000);
  13. $charid = strtoupper(md5(uniqid(rand(), true)));
  14. $hyphen = chr(45);// "-"
  15. $uuid = chr(123)// "{"
  16. .substr($charid, 0, 8).$hyphen
  17. .substr($charid, 8, 4).$hyphen
  18. .substr($charid,12, 4).$hyphen
  19. .substr($charid,16, 4).$hyphen
  20. .substr($charid,20,12)
  21. .chr(125);// "}"
  22. return $uuid;
  23. }
  24. }
复制代码


上一篇:

下一篇: