Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/efrane/basex
Quickly convert to and from roman numbers.
https://github.com/efrane/basex
Last synced: about 2 months ago
JSON representation
Quickly convert to and from roman numbers.
- Host: GitHub
- URL: https://github.com/efrane/basex
- Owner: eFrane
- License: mit
- Created: 2017-12-13T22:59:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-03-16T09:04:31.000Z (almost 4 years ago)
- Last Synced: 2024-05-05T09:22:57.561Z (8 months ago)
- Language: PHP
- Size: 24.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/eFrane/BaseX.svg?branch=master)](https://travis-ci.org/eFrane/BaseX)
[![Latest Stable Version](https://poser.pugx.org/efrane/base-x/v/stable)](https://packagist.org/packages/efrane/base-x)
[![Latest Unstable Version](https://poser.pugx.org/efrane/base-x/v/unstable)](https://packagist.org/packages/efrane/base-x)
[![License](https://poser.pugx.org/efrane/base-x/license)](https://packagist.org/packages/efrane/base-x)# BaseX
Quickly convert to and from roman numbers.
```php
$int = BaseX::toDecimal('X'); // $int = 10
$roman = BaseX::toRoman(10); // $roman = 'X'
```