• Reading time ~ 1 min
  • 08.11.2022

The popular PHP UUID library by Ben Ramsey released a new version with support for UUID v8, custom UUIDs:

The UUID package implements the UUID v8 draft spec, which outlines a few potentials reasons one might consider using UUID v8:

  • An implementation would like to embed extra information within the UUID other than what is defined in this document.
  • An implementation has other application/language restrictions which inhibit the use of one of the current UUIDs.

Here's an example of generating a version 8 custom UUID:

use Ramsey\Uuid\Uuid;
 
/*
The bytes should be a 16-byte octet string, an open blob of data that you may fill with 128 bits of information. However, bits 48 through 51 will be replaced with the UUID version field, and bits 64 and 65 will be replaced with the UUID variant. You must not rely on these bits for your application needs.
*/
 
$uuid = Uuid::uuid8("\x00\x11\x22\x33\x44\x55\x66\x77\x88\x99\xaa\xbb\xcc\xdd\xee\xff");
 
printf(
    "UUID: %s\nVersion: %d\n",
    $uuid->toString(),
    $uuid->getFields()->getVersion()
);
 
/*
UUID: 00112233-4455-8677-8899-aabbccddeeff
Version: 8
*/

To learn more about using version 8 UUIDs, read Version 8: Custom in the ramsey/uuid Manual. You can read more about UUID v8 draft spec if you'd like more technical details.

Note: the Laravel framework v9 requires ramsey/uuid:^4.2.2 and you can update dependencies to get the latest version of ramsey/uuid if you'd like to experiment further:

tinker example of uuidv8

Comments

No comments yet
Yurij Finiv

Yurij Finiv

Full stack

ABOUT

Professional Fullstack Developer with extensive experience in website and desktop application development. Proficient in a wide range of tools and technologies, including Bootstrap, Tailwind, HTML5, CSS3, PUG, JavaScript, Alpine.js, jQuery, PHP, MODX, and Node.js. Skilled in website development using Symfony, MODX, and Laravel. Experience: Contributed to the development and translation of MODX3 i...

About author CrazyBoy49z
WORK EXPERIENCE
Contact
Ukraine, Lutsk
+380979856297