This package is abandoned and no longer maintained. No replacement package was suggested.

A UUID To Integer Converter

v1.0.0 2018-03-30 16:07 UTC

This package is auto-updated.

Last update: 2022-02-01 13:12:47 UTC


README

A UUID to 64-bit signed integer converter.

UUIDs represent 128 bits of data, thus this is a lossy conversion, performed by xoring both halves of the UUID.

Installation

This version requires 64-bit PHP 7.1 or 7.2.

To get the latest version, simply require the project using Composer:

$ composer require alt-three/uuid

Usage

Say, you have a UUID to hand, and you'd like to convert it to an integer, then you're in luck!

AltThree\Uuid\UuidConverter::convert('2CD3F0DB-036E-41BA-84A6-72933F47F5FB'); // 4734454447164519848
AltThree\Uuid\UuidConverter::convert('{6167B53D-D8D2-42D3-8333-5BCA81A93A4C}'); // -6955673998131833630

It's easy as that! We are case insensitive, and support UUIDs with or without the surrounding braces.

Security

If you discover a security vulnerability within this package, please e-mail us at support@alt-three.com. All security vulnerabilities will be promptly addressed.

License

Alt Three Storage is licensed under The MIT License (MIT).