You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
435 B
24 lines
435 B
1 year ago
|
<?php
|
||
|
|
||
|
namespace YooKassa\Helpers;
|
||
|
|
||
|
|
||
|
class UUID
|
||
|
{
|
||
|
/**
|
||
|
* @return string
|
||
|
* @throws \Exception
|
||
|
*/
|
||
|
public static function v4()
|
||
|
{
|
||
|
$hexData = bin2hex(Random::bytes(16));
|
||
|
$parts = str_split($hexData, 4);
|
||
|
$parts[3] = '4' . substr($parts[3], 1);
|
||
|
$parts[4] = '8' . substr($parts[4], 1);
|
||
|
|
||
|
return vsprintf('%s%s-%s-%s-%s-%s%s%s',
|
||
|
$parts
|
||
|
);
|
||
|
}
|
||
|
}
|