PHP Classes

AnyBase: Encode and decode numbers in any base up to 65

Recommend this page to a friend!
  Info   View files Documentation   View files View files (2)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 163 This week: 1All time: 8,920 This week: 560Up
Version License PHP version Categories
anybase 1.0Freeware5PHP 5, Text processing, Math
Description 

Author

This class can encode and decode numbers in any base up to 65, where PHP base_convert only works up to 36.

It can take a given number and convert it into a text string made of characters that represent that number in any number base.

The class can also take a previously encoded number as text string and retrieve the original number value.

Picture of Michael Richey
  Performance   Level  
Name: Michael Richey <contact>
Classes: 1 package by
Country: United States United States
Age: 50
All time rank: 4246540 in United States United States
Week rank: 416 Up46 in United States United States Up

Documentation

Create a base numbering system to meet your needs.

Designed to create short urls based on a decimal id number - the default charset contains the unreserved URL characters and is good up to base65.

Using AnyBase is simple. Simply, initialize an object with or without a charset and use it to encode or decode a number.

$b65 = new AnyBase();

$original = 1000000;

$encoded = $b65->encode($original); // '3FIE'

$decoded = $b65->decode($encoded); // 1000000


  Files folder image Files  
File Role Description
Plain text file AnyBase.php Class Class source
Accessible without login Plain text file README.md Doc. Documentation

 Version Control Unique User Downloads Download Rankings  
 100%
Total:163
This week:1
All time:8,920
This week:560Up