Habari\UUID::get_hex PHP Метод

get_hex() публичный Метод

public get_hex ( ) : the
Результат the canonical hexadecimal representation of the generated UUID
    public function get_hex()
    {
        $uuid_hex = '';
        for ($i = 0; $i < 16; $i++) {
            if (4 == $i || 6 == $i || 8 == $i || 10 == $i) {
                $uuid_hex .= '-';
            }
            $uuid_hex .= sprintf('%02x', $this->uuid[$i]);
        }
        return $uuid_hex;
    }