Skip to content

Instantly share code, notes, and snippets.

@dev-sithu
Created January 13, 2021 06:02
Show Gist options
  • Save dev-sithu/be9bca629e8472304ff48a452ca1f038 to your computer and use it in GitHub Desktop.
Save dev-sithu/be9bca629e8472304ff48a452ca1f038 to your computer and use it in GitHub Desktop.
Convert English number to Myanmar number
/**
* Convert English number to Myanmar number
* @param string $num
* @return string
*/
function en2myNum($num)
{
$digits = array(
'/0/' => '၀',
'/1/' => '၁',
'/2/' => '၂',
'/3/' => '၃',
'/4/' => '၄',
'/5/' => '၅',
'/6/' => '၆',
'/7/' => '၇',
'/8/' => '၈',
'/9/' => '၉',
);
return preg_replace(array_keys($digits), array_values($digits), $num);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment