J'ai ceci
$example = "1234567"
$subtotal = number_format($example, 2, '.', '');
le retour du sous-total $ est "1234567.00"
comment modifier la définition de $ subtotal, le faire comme ceci "1,234,567.00"
Ci-dessous affichera 1,234,567.00
$example = "1234567";
$subtotal = number_format($example, 2, '.', ',');
echo $subtotal;
Syntaxe
string number_format ( float $number , int $decimals = 0 , string $dec_point = '.' , string $thousands_sep = ',' )
Mais je vous conseille d'utiliser money_format qui formatera un nombre comme une chaîne de devise
Vous avez de nombreuses options, mais money_format peut faire l'affaire pour vous.
// Example:
$amount = '100000';
setlocale(LC_MONETARY, 'en_IN');
$amount = money_format('%!i', $amount);
echo $amount;
// Output:
"1,00,000.00"
Veuillez noter que money_format()
n'est défini que si le système a des capacités strfmon
. Par exemple, Windows ne le fait pas, il n'est donc pas défini dans Windows.
Édition finale: Voici une implémentation pure PHP qui fonctionnera sur n'importe quel système:
$amount = '10000034000';
$amount = moneyFormatIndia( $amount );
echo number_format($amount, 2, '.', '');
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.
}
Réf: http://php.net/manual/en/function.money-format.php
string money_format ( string $format , float $number )
ex:
// let's print the international format for the en_US locale
setlocale(LC_MONETARY, 'en_US');
echo money_format('%i', $number) . "\n";
// USD 1,234.56
Remarque: La fonction money_format () n'est définie que si le système a des capacités strfmon. Par exemple, Windows ne le fait pas, donc money_format () n'est pas défini dans Windows.
Remarque: La catégorie LC_MONETARY des paramètres régionaux affecte le comportement de cette fonction. Utilisez setlocale () pour définir les paramètres régionaux par défaut appropriés avant d'utiliser cette fonction.
Utilisez number_format : http://www.php.net/manual/en/function.number-format.php
string number_format ( float $number , int $decimals = 0 , string $dec_point = '.' , string $thousands_sep = ',' )
$number = 123457;
$format_number = number_format($number, 2, '.', ',');
// 1,234.57