PHP Classes

PHP UUID v4, v3 or v5, v1 Generator: Generate unique identifiers according to RFC 4122

Recommend this page to a friend!
  Info   View files Documentation   View files View files (4)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not yet rated by the usersTotal: 119 This week: 2All time: 9,501 This week: 94Up
Version License PHP version Categories
abmmhasan-uuid 1.0.3Custom (specified...7Text processing, PHP 7
Description 

Author

This class can generate unique identifiers according to RFC 4122.

It can generate strings with unique values implementing the RFC 4122 specification in several variants. Currently it can generate:

- Variant 1 using a time based node value
- Variant 4 completely random
- Variant 3 or 5 based on a prefix and a type of identifier to generate

Picture of A. B. M. Mahmudul Hasan
  Performance   Level  
Name: A. B. M. Mahmudul Hasan <contact>
Classes: 3 packages by
Country: Bangladesh Bangladesh
Age: 34
All time rank: 404648 in Bangladesh Bangladesh
Week rank: 109 Up3 in Bangladesh Bangladesh Up
Innovation award
Innovation award
Nominee: 1x

Documentation

UUID

License: MIT

UUID (v1, v3-v5) Generator (RFC4122)

Prerequisites

Language: PHP 7.1/+

Installation

composer require abmmhasan/uuid

Usage

v1

/
* Get v1 UUID (Time based)
*/
\AbmmHasan\Uuid::v1();

/
* Get generated node, for further use
*/
$node = \AbmmHasan\Uuid::getNode();

/
* Pass your pre-generated node (for node specific UUID)
*/
\AbmmHasan\Uuid::v1($node);

v4

/
* Get v4 UUID (completely random)
*/
\AbmmHasan\Uuid::v4();

v3 & v5

/
* Get v3 or v5 UUID for 'TestString' (default X500 namespace)
*/
\AbmmHasan\Uuid::v3('TestString');
// or
\AbmmHasan\Uuid::v5('TestString');

/
* Get v3 or v5 UUID for an URL & pre-defined namespace
* You can pass X500, URL, OID, DNS (check RFC4122 #Appendix C)
*/
\AbmmHasan\Uuid::v3('abmmhasan.github.io','url');
// or
\AbmmHasan\Uuid::v5('abmmhasan.github.io','url');

/
* You can generate a random UUID & use as namespace as well
*/
\AbmmHasan\Uuid::v3('abmmhasan.github.io','fa1700dd-828c-4d1b-8e6d-a6104807da90');
// or
\AbmmHasan\Uuid::v5('abmmhasan.github.io','fa1700dd-828c-4d1b-8e6d-a6104807da90');

v2

/ 
* Not supported! 
*/

Support

Having trouble? Create an issue!


  Files folder image Files  
File Role Description
Files folder imagesrc (1 file)
Plain text file composer.json Data Auxiliary data
Plain text file LICENSE Lic. License text
Plain text file README.md Doc. Documentation

  Files folder image Files  /  src  
File Role Description
  Plain text file Uuid.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:119
This week:2
All time:9,501
This week:94Up