Comment afficher la monnaie dans le Format de numérotation indienne en PHP

j'ai une question sur le formatage de la devise de la Roupie (Roupie indienne - INR).

par exemple, les nombres ici sont représentés comme:

1
10
100
1,000
10,000
1,00,000
10,00,000
1,00,00,000
10,00,00,000

Consultez Indiens Système De Numérotation

j'ai à faire avec PHP.

j'ai vu cette question affichage de la monnaie dans le Format de numérotation indienne . Mais je n'ai pas pu l'obtenir pour PHP mon problème.

mise à jour:

comment utiliser money_format () en format monnaie indienne?

21
demandé sur Community 2012-04-06 14:51:42

20 réponses

vous avez tellement d'options mais money_format peut faire l'affaire pour vous.

exemple:

$amount = '100000';
setlocale(LC_MONETARY, 'en_IN');
$amount = money_format('%!i', $amount);
echo $amount;

sortie:

1,00,000.00

Note:

la fonction money_format () n'est définie que si le système a des capacités strfmon. Par exemple, Windows ne l'est pas, donc money_format () n'est pas défini dans Windows.

Pur PHP de mise en Œuvre - Fonctionne sur n'importe quel système:

$amount = '10000034000';
$amount = moneyFormatIndia( $amount );
echo $amount;

function moneyFormatIndia($num) {
    $explrestunits = "" ;
    if(strlen($num)>3) {
        $lastthree = substr($num, strlen($num)-3, strlen($num));
        $restunits = substr($num, 0, strlen($num)-3); // extracts the last three digits
        $restunits = (strlen($restunits)%2 == 1)?"0".$restunits:$restunits; // explodes the remaining digits in 2's formats, adds a zero in the beginning to maintain the 2's grouping.
        $expunit = str_split($restunits, 2);
        for($i=0; $i<sizeof($expunit); $i++) {
            // creates each of the 2's group and adds a comma to the end
            if($i==0) {
                $explrestunits .= (int)$expunit[$i].","; // if is first value , convert into integer
            } else {
                $explrestunits .= $expunit[$i].",";
            }
        }
        $thecash = $explrestunits.$lastthree;
    } else {
        $thecash = $num;
    }
    return $thecash; // writes the final format where $currency is the currency symbol.
}
37
répondu Baba 2017-06-27 21:19:32
echo 'Rs. '.IND_money_format(1234567890);

function IND_money_format($money){
    $len = strlen($money);
    $m = '';
    $money = strrev($money);
    for($i=0;$i<$len;$i++){
        if(( $i==3 || ($i>3 && ($i-1)%2==0) )&& $i!=$len){
            $m .=',';
        }
        $m .=$money[$i];
    }
    return strrev($m);
}

NOTE:: il n'est pas testé sur les valeurs des flotteurs et il ne convient que pour les entiers

11
répondu Vishal Chanana 2016-12-30 05:01:23

L'exemple que vous avez lié utilise les bibliothèques ICU qui sont disponibles avec PHP dans le Intl Extension Docs :

$fmt = new NumberFormatter($locale = 'en_IN', NumberFormatter::CURRENCY);
echo $fmt->format(10000000000.1234)."\n"; # Rs 10,00,00,00,000.12

ou peut-être mieux adapté dans votre cas:

$fmt = new NumberFormatter($locale = 'en_IN', NumberFormatter::DECIMAL);
echo $fmt->format(10000000000)."\n"; # 10,00,00,00,000
8
répondu hakre 2017-05-23 12:26:12

vérifier ce code son travail 100% pour le format Rs indien avec le réglage décimal u peut utiliser

123456.789 123,456 123.4 Cents vingt trois et 1,2,3,4,5,6,7,8,9,.222

function moneyFormatIndia($num){

$explrestunits = "" ;
$num=preg_replace('/,+/', '', $num);
$words = explode(".", $num);
$des="00";
if(count($words)<=2){
    $num=$words[0];
    if(count($words)>=2){$des=$words[1];}
    if(strlen($des)<2){$des="$des0";}else{$des=substr($des,0,2);}
}
if(strlen($num)>3){
    $lastthree = substr($num, strlen($num)-3, strlen($num));
    $restunits = substr($num, 0, strlen($num)-3); // extracts the last three digits
    $restunits = (strlen($restunits)%2 == 1)?"0".$restunits:$restunits; // explodes the remaining digits in 2's formats, adds a zero in the beginning to maintain the 2's grouping.
    $expunit = str_split($restunits, 2);
    for($i=0; $i<sizeof($expunit); $i++){
        // creates each of the 2's group and adds a comma to the end
        if($i==0)
        {
            $explrestunits .= (int)$expunit[$i].","; // if is first value , convert into integer
        }else{
            $explrestunits .= $expunit[$i].",";
        }
    }
    $thecash = $explrestunits.$lastthree;
} else {
    $thecash = $num;
}
return "$thecash.$des"; // writes the final format where $currency is the currency symbol.

}
4
répondu user3314233 2014-02-15 19:41:48

donc si je lis bien, le système de numérotation Indien sépare les milliers, puis chaque Pouvoir de cent après ça? Hum...

peut-être quelque chose comme ça?

function indian_number_format($num) {
    $num = "".$num;
    if( strlen($num) < 4) return $num;
    $tail = substr($num,-3);
    $head = substr($num,0,-3);
    $head = preg_replace("/\B(?=(?:\d{2})+(?!\d))/",",",$head);
    return $head.",".$tail;
}
1
répondu Niet the Dark Absol 2012-04-06 10:57:58
$amount=-3000000000111.11;
$amount<0?(($sign='-').($amount*=-1)):$sign=''; //Extracting sign from given amount
$pos=strpos($amount, '.'); //Identifying the decimal point position
$amt=  substr($amount, $pos-3); // Extracting last 3 digits of integer part along with fractional part
$amount=  substr($amount,0, $pos-3); //removing the extracted part from amount
for(;strlen($amount);$amount=substr($amount,0,-2)) // Now loop through each 2 digits of remaining integer part
    $amt=substr ($amount,-2).','.$amt; //forming Indian Currency format by appending (,) for each 2 digits
echo $sign.$amt; //Appending sign
1
répondu Kishore 2015-11-03 12:17:12

en l'absence de money_format:

function format($amount): string
{
    list ($number, $decimal) = explode('.', sprintf('%.2f', floatval($amount)));

    $sign = $number < 0 ? '-' : '';

    $number = abs($number);

    for ($i = 3; $i < strlen($number); $i += 3)
    {
        $number = substr_replace($number, ',', -$i, 0);
    }

    return $sign . $number . '.' . $decimal;

}
1
répondu Sonam Gurung 2017-09-04 18:33:00

vous devez vérifier la fonction number_format. voici le lien

séparer des milliers avec des virgules ressemblera à

$rupias = number_format($number, 2, ',', ',');
0
répondu Elena 2012-04-06 11:04:07

j'ai utilisé des paramètres de format différents de money_format() pour ma sortie.

setlocale(LC_MONETARY, 'en_IN');
if (ctype_digit($amount) ) {
     // is whole number
     // if not required any numbers after decimal use this format 
     $amount = money_format('%!.0n', $amount);
}
else {
     // is not whole number
     $amount = money_format('%!i', $amount);
}
//$amount=10043445.7887 outputs 1,00,43,445.79
//$amount=10043445 outputs 1,00,43,445
0
répondu Somnath Muluk 2012-04-07 09:08:57

fonction ci-dessus ne fonctionnant pas avec décimal

$amount = 10000034000.001;
$amount = moneyFormatIndia( $amount );
echo $amount;




function moneyFormatIndia($num){
        $nums = explode(".",$num);
        if(count($nums)>2){
            return "0";
        }else{
        if(count($nums)==1){
            $nums[1]="00";
        }
        $num = $nums[0];
        $explrestunits = "" ;
        if(strlen($num)>3){
            $lastthree = substr($num, strlen($num)-3, strlen($num));
            $restunits = substr($num, 0, strlen($num)-3); 
            $restunits = (strlen($restunits)%2 == 1)?"0".$restunits:$restunits; 
            $expunit = str_split($restunits, 2);
            for($i=0; $i<sizeof($expunit); $i++){

                if($i==0)
                {
                    $explrestunits .= (int)$expunit[$i].","; 
                }else{
                    $explrestunits .= $expunit[$i].",";
                }
            }
            $thecash = $explrestunits.$lastthree;
        } else {
            $thecash = $num;
        }
        return $thecash.".".$nums[1]; 
        }
    }

réponse: 10,00,00,34,000.001

0
répondu Dhaval Dhami 2013-10-05 05:57:58

c'est ma propre fonction de faire la tâche

function bd_money($num) {
    $pre = NULL; $sep = array(); $app = '00';
    $s=substr($num,0,1);
    if ($s=='-') {$pre= '-';$num = substr($num,1);}
    $num=explode('.',$num);
    if (count($num)>1) $app=$num[1];
    if (strlen($num[0])<4) return $pre . $num[0] . '.' . $app;
    $th=substr($num[0],-3);
    $hu=substr($num[0],0,-3);
    while(strlen($hu)>0){$sep[]=substr($hu,-2); $hu=substr($hu,0,-2);}
    return $pre.implode(',',array_reverse($sep)).','.$th.'.'.$app;
}

il a fallu 0,0110 secondes par mille requête alors que number_format a pris 0,001 seulement. Essayez toujours D'utiliser les fonctions natives PHP uniquement lorsque la performance est un problème cible.

0
répondu Abbas 2014-07-18 00:18:52
$r=explode('.',12345601.20);

$n = $r[0];
$len = strlen($n); //lenght of the no
$num = substr($n,$len-3,3); //get the last 3 digits
$n = $n/1000; //omit the last 3 digits already stored in $num
while($n > 0) //loop the process - further get digits 2 by 2
{
    $len = strlen($n);
    $num = substr($n,$len-2,2).",".$num;
    $n = round($n/100);
}
echo "Rs.".$num.'.'.$r[1];
0
répondu Elavarasan i2software 2015-04-06 13:28:22

si vous ne voulez pas utiliser n'importe quelle fonction intégrée dans mon cas je faisais sur le serveur d'iis était donc incapable d'utiliser une la fonction en php a fait ainsi

$num = -21324322.23;


moneyFormatIndiaPHP($num);
function moneyFormatIndiaPHP($num){
    //converting it to string 
    $numToString = (string)$num;

    //take care of decimal values
    $change = explode('.', $numToString);

    //taking care of minus sign
    $checkifminus =  explode('-', $change[0]);


    //if minus then change the value as per
    $change[0] = (count($checkifminus) > 1)? $checkifminus[1] : $checkifminus[0];

    //store the minus sign for further
    $min_sgn = '';
    $min_sgn = (count($checkifminus) > 1)?'-':'';



    //catch the last three
    $lastThree = substr($change[0], strlen($change[0])-3);



    //catch the other three
    $ExlastThree = substr($change[0], 0 ,strlen($change[0])-3);


    //check whethr empty 
    if($ExlastThree != '')
        $lastThree = ',' . $lastThree;


    //replace through regex
    $res = preg_replace("/\B(?=(\d{2})+(?!\d))/",",",$ExlastThree);

    //main container num
    $lst = '';

    if(isset($change[1]) == ''){
        $lst =  $min_sgn.$res.$lastThree;
    }else{
        $lst =  $min_sgn.$res.$lastThree.".".$change[1];
    }

    //special case if equals to 2 then 
    if(strlen($change[0]) === 2){
        $lst = str_replace(",","",$lst);
    }

    return $lst;
}
0
répondu Nyksh Mrprfct 2015-07-30 15:46:38

ceci pour les valeurs entières et les valeurs flottantes

    function indian_money_format($number)
    {

        if(strstr($number,"-"))
        {
            $number = str_replace("-","",$number);
            $negative = "-";
        }

        $split_number = @explode(".",$number);

        $rupee = $split_number[0];
        $paise = @$split_number[1];

        if(@strlen($rupee)>3)
        {
            $hundreds = substr($rupee,strlen($rupee)-3);
            $thousands_in_reverse = strrev(substr($rupee,0,strlen($rupee)-3));
            $thousands = '';
            for($i=0; $i<(strlen($thousands_in_reverse)); $i=$i+2)
            {
                $thousands .= $thousands_in_reverse[$i].$thousands_in_reverse[$i+1].",";
            }
            $thousands = strrev(trim($thousands,","));
            $formatted_rupee = $thousands.",".$hundreds;

        }
        else
        {
            $formatted_rupee = $rupee;
        }

        if((int)$paise>0)
        {
            $formatted_paise = ".".substr($paise,0,2);
        }else{
            $formatted_paise = '.00';
        }

        return $negative.$formatted_rupee.$formatted_paise;

    }
0
répondu Shailesh Chauhan 2017-05-29 05:38:26

utiliser cette fonction:

function addCommaToRs($amt, &$ret, $dec='', $sign=''){
    if(preg_match("/-/",$amt)){
        $amts=explode('-',$amt);
        $amt=$amts['1'];
        static $sign='-';
    } 
    if(preg_match("/\./",$amt)){
        $amts=explode('.',$amt);
        $amt=$amts['0'];
        $l=strlen($amt);
        static $dec;
        $dec=$amts['1'];
    } else {
        $l=strlen($amt);
    }
    if($l>3){
        if($l%2==0){
            $ret.= substr($amt,0,1);
            $ret.= ",";
            addCommaToRs(substr($amt,1,$l),$ret,$dec);
        } else{
            $ret.=substr($amt,0,2);
            $ret.= ",";     
            addCommaToRs(substr($amt,2,$l),$ret,$dec);
        }
    } else {
        $ret.= $amt;
        if($dec) $ret.=".".$dec;
    }
    return $sign.$ret; 
}

appelez ça comme ça:

$amt = '';
echo addCommaToRs(123456789.123,&$amt,0);

Ce sera le retour de 12,34,567.123 .

0
répondu RN Kushwaha 2017-06-27 20:56:02
<?php
    function moneyFormatIndia($num) 
    {
        //$num=123456789.00;
        $result='';
        $sum=explode('.',$num);
        $after_dec=$sum[1];
        $before_dec=$sum[0];
        $result='.'.$after_dec;
        $num=$before_dec;
        $len=strlen($num);
        if($len<=3) 
        {
            $result=$num.$result;
        }
        else
        {
            if($len<=5)
            {
                $result='Rs '.substr($num, 0,$len-3).','.substr($num,$len-3).$result;
                return $result;
            }
            else
            {
                $ls=strlen($num);
                $result=substr($num, $ls-5,2).','.substr($num, $ls-3).$result;
                $num=substr($num, 0,$ls-5);
                while(strlen($num)!=0)
                {
                    $result=','.$result;
                    $ls=strlen($num);
                    if($ls<=2)
                    {
                        $result='Rs. '.$num.$result;
                        return $result;
                    }
                    else
                    {
                        $result=substr($num, $ls-2).$result;
                        $num=substr($num, 0,$ls-2);
                    }
                }
            }
        }
    }
?>
0
répondu Vijay Gawade 2018-01-09 18:03:10
<?php
$amount = '-100000.22222';    // output -1,00,000.22 
//$amount = '0100000.22222';  // output 1,00,000.22 
//$amount = '100000.22222';   // output 1,00,000.22 
//$amount = '100000.';       // output 1,00,000.00 
//$amount = '100000.2';     // output 1,00,000.20
//$amount = '100000.0';    // output 1,00,000.00 
//$amount = '100000';      // output 1,00,000.00 

echo $aaa = moneyFormatIndia($amount);

function moneyFormatIndia($amount)
    {

        $amount = round($amount,2);

        $amountArray =  explode('.', $amount);
        if(count($amountArray)==1)
        {
            $int = $amountArray[0];
            $des=00;
        }
        else {
            $int = $amountArray[0];
            $des=$amountArray[1];
        }
        if(strlen($des)==1)
        {
            $des=$des."0";
        }
        if($int>=0)
        {
            $int = numFormatIndia( $int );
            $themoney = $int.".".$des;
        }

        else
        {
            $int=abs($int);
            $int = numFormatIndia( $int );
            $themoney= "-".$int.".".$des;
        }   
        return $themoney;
    }

function numFormatIndia($num)
    {

        $explrestunits = "";
        if(strlen($num)>3)
        {
            $lastthree = substr($num, strlen($num)-3, strlen($num));
            $restunits = substr($num, 0, strlen($num)-3); // extracts the last three digits
            $restunits = (strlen($restunits)%2 == 1)?"0".$restunits:$restunits; // explodes the remaining digits in 2's formats, adds a zero in the beginning to maintain the 2's grouping.
            $expunit = str_split($restunits, 2);
            for($i=0; $i<sizeof($expunit); $i++) {
                // creates each of the 2's group and adds a comma to the end
                if($i==0) {
                    $explrestunits .= (int)$expunit[$i].","; // if is first value , convert into integer
                } else {
                    $explrestunits .= $expunit[$i].",";
                }
            }
            $thecash = $explrestunits.$lastthree;
        } else {
            $thecash = $num;
        }
        return $thecash; // writes the final format where $currency is the currency symbol.
    }
?>
0
répondu sachin saini 2018-01-18 07:39:17

utilisez simplement la fonction ci-dessous pour formater en INR.

function amount_inr_format($amount) {
    $fmt = new \NumberFormatter($locale = 'en_IN', NumberFormatter::DECIMAL);
    return $fmt->format($amount);
}
0
répondu Bishwanath Jha 2018-09-21 05:23:13
declare @Price decimal(26,7)
Set @Price=1234456677
select FORMAT(@Price,  'c', 'en-In')

résultat:

1,23,44,56,677.00
-1
répondu Ramya 2015-02-12 08:24:17

heres est chose simple u peut le faire ,

 float amount = 100000;

 NumberFormat formatter = NumberFormat.getCurrencyInstance(new Locale("en", "IN"));

 String moneyString = formatter.format(amount);

 System.out.println(moneyString);

la sortie sera, Rs.100 000 habitants.00 .

-2
répondu CleanX 2013-09-03 15:38:44