frostealth/php-shortid-helper

There is no license information available for the latest version (1.0.0) of this package.

PHP ShortId Helper

1.0.0 2014-08-29 15:40 UTC

This package is not auto-updated.

Last update: 2024-04-23 00:34:24 UTC


README

Example

<?php

use frostealth\Helpers\ShortId

$id = 7777777;
$encoded = ShortId::encode($id);
echo $encoded; // vRd1

$decoded = ShortId::decode($encoded);
echo $decoded; // 7777777