PHP code example of lemonpatwari / number-to-bangla
1. Go to this page and download the library: Download lemonpatwari/number-to-bangla library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lemonpatwari / number-to-bangla example snippets
use lemonpatwari\BanglaNumber\NumberToBangla;
$numberToBangla = new NumberToBangla();
$output = $numberToBangla->bnWord(21424060); // Output: দুই কোটি চৌদ্দ লক্ষ চব্বিশ হাজার ষাট
$output = $numberToBangla->bnWord(21424060.06); // Output: দুই কোটি চৌদ্দ লক্ষ চব্বিশ হাজার ষাট দশমিক শূন্য ছয়
$output = $numberToBangla->bnMoney(21424060); // Output: দুই কোটি চৌদ্দ লক্ষ চব্বিশ হাজার ষাট টাকা
$output = $numberToBangla->bnMoney(21424060.05); // Output: দুই কোটি চৌদ্দ লক্ষ চব্বিশ হাজার ষাট টাকা ছয় পয়সা
$output = $numberToBangla->bnNum(21424060); // Output: ২১৪২৪০৬০
$output = $numberToBangla->bnNum(21424060.987); // Output: ২১৪২৪০৬০.৯৮৭
// Input Limit (1-12) Example
$output = $numberToBangla->bnMonth(4); // Output: এপ্রিল
$output = $numberToBangla->bnMonth(12); // Output: ডিসেম্বর
$output = $numberToBangla->bnCommaLakh(21424060); // Output: ২,১৪,২৪,০৬০
bash
php artisan banglaNumber:install