JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "Utils.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/fakerphp/faker/src/Faker/Provider/bn_BD/Utils.php
File size: 300 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Faker\Provider\bn_BD;
class Utils
{
public static function getBanglaNumber($number)
{
$english = range(0, 10);
$bangla = ['০', '১', '২', '৩', '৪', '৫', '৬', '৭', '৮', '৯'];
return str_replace($english, $bangla, $number);
}
}