dev-master
9999999-devNumber to word, roman, ordinal converter
MIT
The Requires
by Rocco Howard
laravel converter roman number word ordinal
Number to word, roman, ordinal converter
This package provides a Laravel wrapper to the PHP-Number-Converter package that provides the ability to convert a numerical number to a word, roman numeral, or an ordinal suffix., (*1)
This package has been developed by H&H|Digital, an Australian botique developer. Visit us at hnh.digital., (*4)
Via composer:, (*5)
$ composer require hnhdigital-os/laravel-number-converter
, (*6)
Enable an alias by editing config/app.php:, (*7)
'aliases' => [ ... 'NumConvert' => 'HnhDigital\LaravelNumberConverter\Facade', ... ]
Supported number range -2147483647 to 2147483647., (*8)
echo NumConvert::word(1); echo number_to_word(1);
one
Supported number range 1 to 3999., (*9)
echo NumConvert::roman(1); echo number_to_roman(1);
I
Supported number range 1 to 2147483647., (*10)
echo NumConvert::wordOrdinal(1); echo number_to_word_ordinal(1);
first
Supported number range 1 to 2147483647., (*11)
echo NumConvert::numberOrdinal(1); echo number_with_ordinal_suffix(1);
1st
Please see CONTRIBUTING for details., (*12)
The MIT License (MIT). Please see License File for more information., (*13)
Number to word, roman, ordinal converter
MIT
laravel converter roman number word ordinal