Skip to content

Instantly share code, notes, and snippets.

View ishanrakitha's full-sized avatar

Ishan De Alwis ishanrakitha

  • Dehiwala, Sri Lanka
View GitHub Profile
@opnchaudhary
opnchaudhary / Numbertowords.php
Created February 6, 2013 11:18
A codeigniter library to convert number into words
<?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");
}