dev-scripts / english-nepali-number-converter-php
Package to convert English number to Nepali number and Nepali number to English number.
v1.0.0
2022-12-03 11:20 UTC
Requires
- php: ^8.1
README
Laravel Package to convert English number to Nepali number and Nepali Number to English Number.
I have used Unicode to convert English number to Nepali number.
I have learned it while doing Government Applications of Nepal in 2012. It is very simple, you can easily implement in your project.
Installation
Can install via composer
composer require dev-scripts/english-nepali-number-converter-php
Usage
Convert number
- Convert number form English to Nepali
echo Convert::toNp(123.33); Output : "१२३.३३"; // with thousand count $number = 123456789.05; $numberThousandCount = number_format($number, 2); echo Convert::toNp($numberThousandCount); Output : "१२३,४५६,७८९.०५";
- Convert number form Nepali to English
echo Convert::toEn("१२३४५६७८९.०५"); Output : 123456789.05;
API
Convert::toEn($number)
Example
index.php
echo Convert::toNp(123.33); Output : "१२३.३३"; // with thousand count $number = 123456789.05; $numberThousandCount = number_format($number, 2); echo Convert::toNp($numberThousandCount); Output : "१२३,४५६,७८९.०५";