Skip to content

Instantly share code, notes, and snippets.

@nasirkhan
Created March 26, 2014 07:41
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save nasirkhan/9778412 to your computer and use it in GitHub Desktop.
Save nasirkhan/9778412 to your computer and use it in GitHub Desktop.
Convert a Bengali (Bangla) Number to English Number
/**
*
* 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;
}
@sushanta1234
Copy link

@masumbillahbd
Copy link

thanks for document...

@Oneey
Copy link

Oneey commented Oct 31, 2020

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment