Created
February 6, 2013 11:18
-
-
Save opnchaudhary/4721977 to your computer and use it in GitHub Desktop.
A codeigniter library to convert number into words
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (!defined('BASEPATH')) | |
exit('No direct script access allowed'); | |
class Numbertowords { | |
function convert_number($number) { | |
if (($number < 0) || ($number > 999999999)) { | |
throw new Exception("Number is out of range"); | |
} | |
$Gn = floor($number / 1000000); | |
/* Millions (giga) */ | |
$number -= $Gn * 1000000; | |
$kn = floor($number / 1000); | |
/* Thousands (kilo) */ | |
$number -= $kn * 1000; | |
$Hn = floor($number / 100); | |
/* Hundreds (hecto) */ | |
$number -= $Hn * 100; | |
$Dn = floor($number / 10); | |
/* Tens (deca) */ | |
$n = $number % 10; | |
/* Ones */ | |
$res = ""; | |
if ($Gn) { | |
$res .= $this->convert_number($Gn) . "Million"; | |
} | |
if ($kn) { | |
$res .= (empty($res) ? "" : " ") .$this->convert_number($kn) . " Thousand"; | |
} | |
if ($Hn) { | |
$res .= (empty($res) ? "" : " ") .$this->convert_number($Hn) . " Hundred"; | |
} | |
$ones = array("", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine", "Ten", "Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eightteen", "Nineteen"); | |
$tens = array("", "", "Twenty", "Thirty", "Fourty", "Fifty", "Sixty", "Seventy", "Eigthy", "Ninety"); | |
if ($Dn || $n) { | |
if (!empty($res)) { | |
$res .= " and "; | |
} | |
if ($Dn < 2) { | |
$res .= $ones[$Dn * 10 + $n]; | |
} else { | |
$res .= $tens[$Dn]; | |
if ($n) { | |
$res .= "-" . $ones[$n]; | |
} | |
} | |
} | |
if (empty($res)) { | |
$res = "zero"; | |
} | |
return $res; | |
} | |
} | |
?> |
Hello. Code is very nice and working properly. how can i have a "billion" integrated in the code
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In above comment I improved opnchaudhary's code to read points. Now it will give currency as "Cents" at the end.