Server-side generation of cryptographically random version 4 UUIDs.
UUID (Universally Unique Identifier) is a standard 128-bit identifier represented as 32 hexadecimal digits separated by hyphens: xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx. Version 4 is randomly generated using a cryptographically secure source (random_bytes() in PHP).
The probability of two random UUID v4 values colliding is negligibly small â on the order of 10âģÂŗâˇ even when generating a billion UUIDs per second for a hundred years.