ondram/shortuuid-php55

This package is abandoned and no longer maintained. The author suggests using the pascaldevink/shortuuid package instead.

PHP 5.5 compatible fork of library that generates concise, unambiguous, URL-safe UUIDs

Maintainers

Details

github.com/OndraM/shortuuid

Source

Installs: 3 854

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 22

1.0.2 2016-03-09 12:12 UTC

This package is auto-updated.

Last update: 2022-02-01 12:56:17 UTC


README

If you are on PHP 5.6+, use the original source.

shortuuid is a simple php library that generates concise, unambiguous, URL-safe UUIDs.

Often, one needs to use non-sequential IDs in places where users will see them, but the IDs must be as concise and easy to use as possible. shortuuid solves this problem by translating generated uuids to base57 using lowercase and uppercase letters and digits, and removing similar-looking characters such as l, 1, I, O and 0.

This library is a port of it's python counter-part by Stochastic Technologies: https://github.com/stochastic-technologies/shortuuid

Build Status

Installation

The preferred method of installation is via Packagist and Composer. Run the following command to install the package and add it as a requirement to your project's composer.json:

composer require ondram/shortuuid-php55

Examples

<?php
require 'vendor/autoload.php';

use Ramsey\Uuid\Uuid;
use PascalDeVink\ShortUuid\ShortUuid;

$uuid = Uuid::fromString('4e52c919-513e-4562-9248-7dd612c6c1ca');
$shortUuid = new ShortUuid();
echo $shortUuid->encode($uuid); // output fpfyRTmt6XeE9ehEKZ5LwF
<?php
require 'vendor/autoload.php';

use PascalDeVink\ShortUuid\ShortUuid;

$shortUuid = new ShortUuid();
echo $shortUuid->decode('fpfyRTmt6XeE9ehEKZ5LwF'); // outputs 4e52c919-513e-4562-9248-7dd612c6c1ca