brianfreytag/php-bijective

Encodes any integer into a base(n) string

v1.0.1 2014-11-19 17:22 UTC

This package is auto-updated.

Last update: 2024-04-09 07:03: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