mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-18 07:11:13 +00:00
23 lines
434 B
PHP
23 lines
434 B
PHP
<?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
|
|
);
|
|
}
|
|
} |