PHPackages                             ntwindia/ntwindia - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. ntwindia/ntwindia

ActiveLibrary

ntwindia/ntwindia
=================

Convert number to word in Indian English.

v1.0.1(8y ago)1212.9k↓43.2%61GPL-3.0PHP

Since Aug 9Pushed 8y ago2 watchersCompare

[ Source](https://github.com/swashata/php-number-to-word-india)[ Packagist](https://packagist.org/packages/ntwindia/ntwindia)[ Docs](https://github.com/swashata/php-number-to-word-india)[ RSS](/packages/ntwindia-ntwindia/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (1)

Number to Words PHP Class - Indian Version
==========================================

[](#number-to-words-php-class---indian-version)

[![Build Status](https://camo.githubusercontent.com/2b7ac11e5e5e7278c09217df831f038c28533498c4cd677c5b6b579824dbbfa8/68747470733a2f2f7472617669732d63692e6f72672f73776173686174612f7068702d6e756d6265722d746f2d776f72642d696e6469612e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/swashata/php-number-to-word-india) [![Code Climate](https://camo.githubusercontent.com/4acf0f732f240607446e27c259a8ead484a667771bc58979b385bc147b3af2bc/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f73776173686174612f7068702d6e756d6265722d746f2d776f72642d696e6469612f6261646765732f6770612e737667)](https://codeclimate.com/github/swashata/php-number-to-word-india) [![Test Coverage](https://camo.githubusercontent.com/31e7c4c904b704771b6ebd849ff94d865f94f114860590fcaa102622db85fed9/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f73776173686174612f7068702d6e756d6265722d746f2d776f72642d696e6469612f6261646765732f636f7665726167652e737667)](https://codeclimate.com/github/swashata/php-number-to-word-india/coverage) [![Issue Count](https://camo.githubusercontent.com/458ebfe62607e0c6513a2f66e5f3668fed1936fee07f00f7be8638f7862c4058/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f73776173686174612f7068702d6e756d6265722d746f2d776f72642d696e6469612f6261646765732f69737375655f636f756e742e737667)](https://codeclimate.com/github/swashata/php-number-to-word-india)

This class converts numbers to Indian-English Words. Works for all kinds of numbers including floats. A few examples.

Examples
--------

[](#examples)

- `10,000,00` - **Ten Lakh**
- `3,478` - **Three Thousand Four Hundred And Seventy Eight**
- `1,234,567,890` - **One Hundred And Twenty Three Crore Forty Five Lakh Sixty Seven Thousand Eight Hundred And Ninty**
- `5,024.78` - **Five Thousand Twenty Four And 78/100**

Installation
------------

[](#installation)

### Using Composer

[](#using-composer)

Navigate to your project directory and execute

`composer require ntwindia/ntwindia`

If you haven't already, include the composer `autoload.php` file.

```
require_once 'vendor/autoload.php';
```

### Manual Installation

[](#manual-installation)

**Clone this repository using git**

```
git clone git@github.com:swashata/php-number-to-word-india.git
```

**Include the class**

```
