# NumberToWord

A PHP file to convert any number to word form.

# Setup

Setup is very easy, just import the file into your project and you are all set.

include("NumberToWord.php");

or

require 'NumberToWord.php';

# Convert a number

To convert any number to its word form, create an instance of NumberToWord class. you can then call the convert() function on the NumberToWord object, passing one parameter as the number you want to convert

Note

  • Input must be an integer value in string format.

  • Maximum limit of length of input string = 99

$obj = new NumberToWord();
echo $obj->convert("123");

Output

one hundred twenty-three

Last Updated: 8/23/2020, 11:55:35 AM