Created
March 26, 2014 07:41
-
-
Save nasirkhan/9778412 to your computer and use it in GitHub Desktop.
Convert a Bengali (Bangla) Number to English Number
This file contains 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
/** | |
* | |
* Input any number in Bengali and the following function will return the English number. | |
* | |
*/ | |
function bn2enNumber ($number){ | |
$search_array= array("১", "২", "৩", "৪", "৫", "৬", "৭", "৮", "৯", "০"); | |
$replace_array= array("1", "2", "3", "4", "5", "6", "7", "8", "9", "0"); | |
$en_number = str_replace($search_array, $replace_array, $number); | |
return $en_number; | |
} |
thanks for document...
👍
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1½