8000 GitHub - brianfreytag/php-bijective: Encodes any integer into a base(n) string
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

brianfreytag/php-bijective

Repository files navigation

Bijective

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

About

Encodes any integer into a base(n) string

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

0