ibrahimmomani / numeralstool
简单的阿拉伯-罗马数字格式转换处理程序。
dev-master
2016-02-26 19:23 UTC
Requires
- php: >=5.5.9
Requires (Dev)
- phpunit/phpunit: ^5.2
This package is not auto-updated.
Last update: 2024-09-20 18:23:40 UTC
README
简单的阿拉伯-罗马数字格式转换处理程序。
安装
创建一个空的 composer.json 文件,并在其中放置以下内容。
{
"require": {
"php": ">=5.5",
"ibrahimmomani/numeralstool": "dev-master"
}
}
创建您的 index.php 文件
<?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