Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php money_format currency symbol


<?php

$number = 1234.56;

// let's print the international format for the en_US locale
setlocale(LC_MONETARY, 'en_US');
echo money_format('%i', $number) . "
";
// USD 1,234.56

// Italian national format with 2 decimals`
setlocale(LC_MONETARY, 'it_IT');
echo money_format('%.2n', $number) . "
";
// Eu 1.234,56

// Using a negative number
$number = -1234.5672;

// US national format, using () for negative numbers
// and 10 digits for left precision
setlocale(LC_MONETARY, 'en_US');
echo money_format('%(#10n', $number) . "
";
// ($        1,234.57)

// Similar format as above, adding the use of 2 digits of right
// precision and '*' as a fill character
echo money_format('%=*(#10.2n', $number) . "
";
// ($********1,234.57)

// Let's justify to the left, with 14 positions of width, 8 digits of
// left precision, 2 of right precision, without the grouping character
// and using the international format for the de_DE locale.
setlocale(LC_MONETARY, 'de_DE');
echo money_format('%=*^-14#8.2i', 1234.56) . "
";
// Eu 1234,56****

// Let's add some blurb before and after the conversion specification
setlocale(LC_MONETARY, 'en_GB');
$fmt = 'The final value is %i (after a 10%% discount)';
echo money_format($fmt, 1234.56) . "
";
// The final value is  GBP 1,234.56 (after a 10% discount)

?>

Comment

php numberformatter currency without symbol

// change symbol to whatever you want, nothing to no-symbol
$fmt = new NumberFormatter('en_GB',  NumberFormatter::CURRENCY);
$fmt->setSymbol(NumberFormatter::CURRENCY_SYMBOL, '');
echo $fmt->formatCurrency($price, 'EUR');
Comment

PREVIOUS NEXT
Code Example
Php :: php read zip file without extracting 
Php :: php clone datetime 
Php :: How to write a loop in PHP 
Php :: laravel request except multiple 
Php :: php global variable function 
Php :: datetime blade laravel 
Php :: comment in php 
Php :: show comma separated numbers in php 
Php :: select sum laravel 
Php :: php recursive function to build array 
Php :: join array in php as string 
Php :: pdo bind param 
Php :: register sidebar wordpress 
Php :: get user type wp php 
Php :: check the ajax request in laravel 
Php :: how to inherit a class php 
Php :: laravel upgrade php version 
Php :: codeigniter 4 redirect with data 
Php :: find substring in string php 
Php :: create laravel project with preferred version : 8 
Php :: php date set utc hours 
Php :: laravel scss 
Php :: PHP MySQL Delete Data 
Php :: laravel price database 
Php :: how can we check in the table in comma separated values in laravel 
Php :: sitemap for php website 
Php :: php artisan storage:link not working 
Php :: php secure password hash 
Php :: check if array contains only unique values php 
Php :: name of today php 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =