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
- Host: GitHub
- URL: https://github.com/jaredhowland/new-base-60
- Owner: jaredhowland
- License: other
- Created: 2020-01-08T19:42:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-14T06:40:49.000Z (about 3 years ago)
- Last Synced: 2025-06-12T11:05:18.814Z (about 1 year ago)
- Topics: base60
- Language: PHP
- Homepage: http://tantek.pbworks.com/w/page/19402946/NewBase60
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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.