sandrokeil / php-ulid

A PHP port of alizain/ulid with some minor improvements.

Home Page:https://packagist.org/packages/robinvdvleuten/ulid

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Universally Unique Lexicographically Sortable Identifier

A PHP port of alizain/ulid with some minor improvements.

Latest Stable Version Build Status

Installation

The recommended way to install the library is through Composer.

composer require robinvdvleuten/ulid

Quick Example

use Ulid\Ulid;

$ulid = Ulid::generate();
print $ulid; // 01B8KYR6G8BC61CE8R6K2T16HY

// Or if you prefer a lowercased output
$ulid = Ulid::generate(true);
print $ulid; // 01b8kyr6g8bc61ce8r6k2t16hy

License

MIT © Robin van der Vleuten

About

A PHP port of alizain/ulid with some minor improvements.

https://packagist.org/packages/robinvdvleuten/ulid

License:MIT License


Languages

Language:PHP 100.0%