PHP 没有方法uuid_create
,文档中也没有提到它,所以如果它来自扩展,它很可能不是官方的,而且可能已经过时了。函数需要一个 out 参数而不是返回值这一事实已经是一个非常明显的迹象,表明该函数相当糟糕。
但是,编写 PHP 代码来生成 uuid4 非常容易,因为它对所有字段使用随机值,即您不需要访问特定于系统的内容,例如 MAC 地址:
function uuid4() {
return sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
// 32 bits for "time_low"
mt_rand(0, 0xffff), mt_rand(0, 0xffff),
// 16 bits for "time_mid"
mt_rand(0, 0xffff),
// 16 bits for "time_hi_and_version",
// four most significant bits holds version number 4
mt_rand(0, 0x0fff) | 0x4000,
// 16 bits, 8 bits for "clk_seq_hi_res",
// 8 bits for "clk_seq_low",
// two most significant bits holds zero and one for variant DCE1.1
mt_rand(0, 0x3fff) | 0x8000,
// 48 bits for "node"
mt_rand(0, 0xffff), mt_rand(0, 0xffff), mt_rand(0, 0xffff)
);
}