我像这样生成我的 GUID:
public static function getGUID(){
if (function_exists('com_create_guid')){
return 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 = 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;
}
}
但是对于我使用的 API,我需要获取一个字符 22 的 GUID。我该怎么做?
它应该是这样的:
最佳答案
22 个字符的 UUID 称为 XUID。请参阅说明如何从 UUID here 制作 XUID 还有一个链接到 PHP 库来生成 XUID
关于PHP:如何生成一个字符 22 的 GUID?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37320108/