An open API service indexing awesome lists of open source software.

https://github.com/jaredhowland/new-base-60

PHP library to convert base 10 numbers to new base 60 and back again
https://github.com/jaredhowland/new-base-60

base60

Last synced: 8 months ago
JSON representation

PHP library to convert base 10 numbers to new base 60 and back again

Awesome Lists containing this project

README

          

New Base 60
===========

New base 60 is a base 60 numbering system using only ASCII numbers and letters created by Tantek Çelik (see for more information).

This PHP library converts between base 60 and base 10.

Installing
==========
Using Composer:

`composer require jaredhowland/new-base-60`

Or add the following to your `composer.json` file:

```
"require": {
"jaredhowland/new-base-60": "^1.0"
}
```

Otherwise, just include the file in your project:

`require_once 'path/to/src/NewBase60.php';`

Usage
=====
Example Usage:

```
for why you might want to use, or not use, new base 60 in a project.