Laravel 5 Hashids

Packages

April 27th, 2015

laravel-hashids

Laravel 5 Hashids is a wrapper to the Hashids project.

Hashids is a small open-source library that generates short, unique, non-sequential ids from numbers.

It converts numbers like 347 into strings like “yr8”, or array of numbers like [27, 986] into “3kTMd”.

You can also decode those ids back. This is useful in bundling several parameters into one or simply using them as short UIDs.

Here are a few examples on how this can be used inside your Laravel app:

// Encode integers.
Hashids::encode(4815162342);
 
// Decode strings.
Hashids::decode('1LLb3b4ck');
 
// Dependency injection example.
$hashidsManager->encode(911);

Filed in:

Eric L. Barnes

Eric is the creator of Laravel News and has been covering Laravel since 2012.