Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Last active April 19, 2018 18:19
Show Gist options
  • Save hsleonis/f1ab4e1aa9f0c68d901767b5828ff470 to your computer and use it in GitHub Desktop.
Save hsleonis/f1ab4e1aa9f0c68d901767b5828ff470 to your computer and use it in GitHub Desktop.
English digits to Bengali in PHP
<?php
function changeDigitsEtoB( $digits ) {
$bangla = numfmt_format(numfmt_create( 'bn_BD', NumberFormatter::TYPE_DEFAULT ),$digits);
return $bangla;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment