PHP生成 uuid

Posted 昃昃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP生成 uuid相关的知识,希望对你有一定的参考价值。

//  生成UUID,并去掉分割符
function guid() {
    if (function_exists(com_create_guid)){
        $uuid = com_create_guid();
    }else{
        mt_srand((double)microtime()*10000);//optional for php 4.2.0 and up.
        $charid = strtoupper(md5(uniqid(rand(), true)));
        $hyphen = chr(45);// "-"
        $uuid = chr(123)// "{"
                .substr($charid, 0, 8).$hyphen
                .substr($charid, 8, 4).$hyphen
                .substr($charid,12, 4).$hyphen
                .substr($charid,16, 4).$hyphen
                .substr($charid,20,12)
                .chr(125);// "}"
    }
    $uuid = str_replace(array(-, {, }), ‘‘, $uuid);
    return $uuid;
}

 

以上是关于PHP生成 uuid的主要内容,如果未能解决你的问题,请参考以下文章

[PHP] ubuntu下使用uuid扩展获取uuid

生成 v4 UUID 的 PHP 函数

PHP生成 uuid

php 纯PHP UUID生成器

使用laravel从sql server生成UUID数据类型(uniqueidentifier)失败

PHP安装UUID扩展