mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
14 lines
235 B
PHP
14 lines
235 B
PHP
<?php
|
|
|
|
namespace Rhumsaa\Uuid;
|
|
|
|
class BigNumberConverter
|
|
{
|
|
public function fromHex($hex)
|
|
{
|
|
$number = \Moontoast\Math\BigNumber::baseConvert($hex, 16, 10);
|
|
|
|
return new \Moontoast\Math\BigNumber($number);
|
|
}
|
|
}
|