dev-master
9999999-devSimple arabic-roman numerals format convert handler.
MIT
The Requires
- php >=5.5.9
The Development Requires
by Ibrahim Momani
roman format arabic
Wallogit.com
2017 © Pedro Peláez
Simple arabic-roman numerals format convert handler.
Simple arabic-roman numerals format convert handler., (*1)
Create empty composer.json and place the following in it., (*2)
{
"require": {
"php": ">=5.5",
"ibrahimmomani/numeralstool": "dev-master"
}
}
Create your index.php, (*3)
<?php
require 'vendor/autoload.php';
use Numerals\Numeral;
echo Numeral::factory('arabic', 3333).PHP_EOL; // will output MMMCCCXXXIII
echo Numeral::factory('roman', 'LXVIII').PHP_EOL; // will output 68
Simple arabic-roman numerals format convert handler.
MIT
roman format arabic