SkillAgentSearch skills...

IntegerToEnglish

Convert Integer to English word

Install / Use

/learn @sujalpatel2209/IntegerToEnglish

README

Convert Integer to English Words

Latest Version on Packagist Build Status Quality Score Total Downloads

Laravel package for converting numeric value to english words.

Installation

You can install the package via composer:

composer require sujalpatel/inttoenglish

Usage

IntToEnglish::Int2Eng(1000); // One Thousand
IntToEnglish::Int2Eng(10500); // Ten Thousand Five hundred

Example

Controller


use Illuminate\Http\Request;
use SujalPatel\IntToEnglish\IntToEnglish;

class TestController extends Controller
{
    public function index() {
            echo IntToEnglish::Int2Eng(4500000); //Four Million Five Hundred Thousand 
    }
}

Route

Route::get('/', 'TestController@index');

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email sujalpatel022@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Skills

View on GitHub
GitHub Stars6
CategoryDevelopment
Updated2y ago
Forks3

Languages

PHP

Security Score

75/100

Audited on Jul 26, 2023

No findings