Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 374 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 374 Bytes

romans

roman numerals parser

Build Status

Installation

composer require taniko/romans

Usage

<?php
use Taniko\Romans\Parser;
Parser::toInt('MMXVII'); // 2017
Parser::toInt('MMⅩVII'); // 2017 (Ⅹ is U+2169)
Parser::toRoman(2017);   // MMXVII