GIF89a; CRX
KBHT HEHE
Server IP : 172.26.0.195  /  Your IP : 3.12.146.100
Web Server : Apache
System : Linux 43-205-77-33.cprapid.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64
User : jnclnmuac ( 1026)
PHP Version : 8.0.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home/jnclnmuac/public_html/web/pdf/../../cas/application/libraries/util/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/jnclnmuac/public_html/web/pdf/../../cas/application/libraries/util/Denominator.php
<?php

/**
 * Library For Converting Amount In Words & Other Related Stuffs
 *
 * @author Softpro India Pvt. Ltd.
 */
defined('BASEPATH') OR exit('No direct script access allowed');

class Denominator {
    /*
     * Function to return amount in words for the amount passed as argument.
     * Argument: Numeric amount (can only be int,float or double)
     * Return Type: String
     * Limitation: This function can only handle amount to string conversion upto 9,99,99,999.
     * (NINE CRORES NINTY NINE LAKHS NINTY NINE THOUSANDS NINE HUNDRED NINTY NINE)
     */

    public static function convertToWords($num) {
        $No_0 = $num;
        $No_1 = strlen($No_0);
        $No = 0;
        $Array = array();
        $Value = array('',
            'Hundred',
            'Thousand',
            'Lakh',
            'Crore'
        );
        $Trans = array('',
            'One', 'Two', 'Three', 'Four', 'Five', 'Six', 'Seven', 'Eight', 'Nine', 'Ten',
            'Eleven', 'Twelve', 'Thirteen', 'Fourteen', 'Fifteen', 'Sixteen', 'Seventeen', 'Eighteen', 'Nineteen', 'Twenty',
            'Twenty One', 'Twenty Two', 'Twenty Three', 'Twenty Four', 'Twenty Five', 'Twenty Six', 'Twenty Seven', 'Twenty Eight', 'Twenty Nine', 'Thirty',
            'Thirty One', 'Thirty Two', 'Thirty Three', 'Thirty Four', 'Thirty Five', 'Thirty Six', 'Thirty Seven', 'Thirty Eight', 'Thirty Nine', 'Forty',
            'Forty One', 'Forty Two', 'Forty Three', 'Forty Four', 'Forty Five', 'Forty Six', 'Forty Seven', 'Forty Eight', 'Forty Nine', 'Fifty',
            'Fifty One', 'Fifty Two', 'Fifty Three', 'Fifty Four', 'Fifty Five', 'Fifty Six', 'Fifty Seven', 'Fifty Eight', 'Fifty Nine', 'Sixty',
            'Sixty One', 'Sixty Two', 'Sixty Three', 'Sixty Four', 'Sixty Five', 'Sixty Six', 'Sixty Seven', 'Sixty Eight', 'Sixty Nine', 'Seventy',
            'Seventy One', 'Seventy Two', 'Seventy Three', 'Seventy Four', 'Seventy Five', 'Seventy Six', 'Seventy Seven', 'Seventy Eight', 'Seventy Nine', 'Eighty',
            'Eighty One', 'Eighty Two', 'Eighty Three', 'Eighty Four', 'Eighty Five', 'Eighty Six', 'Eighty Seven', 'Eighty Eight', 'Eighty Nine', 'Ninety',
            'Ninety One', 'Ninety Two', 'Ninety Three', 'Ninety Four', 'Ninety Five', 'Ninety Six', 'Ninety Seven', 'Ninety Eight', 'Ninety Nine'
        );
        while ($No < $No_1) {
            $No_1 = ($No == 2) ? 10 : 100;
            $No_2 = floor($No_0 % $No_1);
            $No_0 = floor($No_0 / $No_1);
            $No += ($No_1 == 10) ?: 2;
            if ($No_2) {
                $No_3 = (($Count = count($Array)) && $No_2 > 9) ? '' : null;
                $No_4 = ($Count == 1 && $Array[0]) ? '' : null;
                $Array [] = ($No_2 < 21) ? $Trans[$No_2] .
                        ' ' . $Value[$Count] . $No_3 .
                        ' ' . $No_4 : $Trans[floor($No_2 / 10) * 10] .
                        ' ' . $Trans[$No_2 % 10] .
                        ' ' . $Value[$Count] . $No_3 .
                        ' ' . $No_4;
            } else {
                $Array[] = null;
            }
        }
        $rupees = implode('', array_reverse($Array));
        return $rupees;
    }

}

KBHT - 2023