php 生成 guid

Posted 代码练习册

tags:

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

function guid( $opt = true ){       //  Set to true/false as your default way to do this.
    if( function_exists(‘com_create_guid‘) ){
        if( $opt ){ return com_create_guid(); }
            else { return trim( 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 );    // "-"
            $left_curly = $opt ? chr(123) : "";     //  "{"
            $right_curly = $opt ? chr(125) : "";    //  "}"
            $uuid = $left_curly
                . substr( $charid, 0, 8 ) . $hyphen
                . substr( $charid, 8, 4 ) . $hyphen
                . substr( $charid, 12, 4 ) . $hyphen
                . substr( $charid, 16, 4 ) . $hyphen
                . substr( $charid, 20, 12 )
                . $right_curly;
            return $uuid;
            }
}

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

PHP 生成唯一的激活码

PHP生成 uuid

为啥这段代码每次都生成 0000-0000 作为 guid? [复制]

php生成各种验证码

GitLab Guide

超级有用的9个PHP代码片段