GUID生成函数

Posted yang1010

tags:

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

/**
* GUID生成函数
* @return string
*/
function create_guid() {
$charid = strtoupper(md5(uniqid(mt_rand(), true)));
$hyphen = chr(45);// "-"
$uuid =
substr($charid, 0, 8).$hyphen
.substr($charid, 8, 4).$hyphen
.substr($charid,12, 4).$hyphen
.substr($charid,16, 4).$hyphen
.substr($charid,20,12);
return $uuid;
}

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

oracle生成主键唯一的id,函数SYS_GUID()

UniqueIdentifier 数据类型 和 GUID 生成函数

UniqueIdentifier 数据类型 和 GUID 生成函数

loadrunner生成随机uuid的方法

C#生成唯一的ID保存到数据库

给oracle当主键,随机生成32位字符串,求代码