brianfreytag / php-bijective
Encodes any integer into a base(n) string
v1.0.1
2014-11-19 17:22 UTC
Requires
- php: >=5.3.3
Requires (Dev)
- phpunit/phpunit: >=3.7
This package is auto-updated.
Last update: 2026-03-09 11:22:14 UTC
README
Encodes any integer into a base(n) string using a defined alphabet.
Installation
The suggested installation method is via composer:
php composer.phar require brianfreytag/php-bijective:dev-master
Usage
After installing the Bijective library, simply create a new instance of the Bijective class, passing in a defined alphabet.
<?php use Bijective\BijectiveTranslator; $alphabet = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $bijective = new BijectiveTranslator($alphabet); $encoded = $bijective->encode(123); // Returns ct $decoded = $bijective->decode('ct'); // Returns 123