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 money_format — Formats a number as a currency string

<?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

display money format php

<?php 


	$number = 1234.56;

	echo number_format($number, 2);

	

 ?>
Comment

display money format php

<?php 


	$number = 1234.56;

	echo number_format($number, 2);//without currency

	

 ?>
Comment

PREVIOUS NEXT
Code Example
Php :: php array_fill 
Php :: how to send data from html to php 
Php :: convert php array to javascript json laravel 
Php :: laravel exclude field 
Php :: call to a member function get_results() on null 
Php :: php convert latitude longitude to map tile 
Php :: how to use custome functions in laravel 
Php :: laravel optional params 
Php :: php mysql prepared statements 
Php :: laravel logout all users 
Php :: php array serialize 
Php :: wordpress limit post content length 
Php :: how to use attempt in laravel 
Php :: get data from csv file in php and print in table 
Php :: Gravity Form Shortcode Wordpress 
Php :: laravel route multiple middleware 
Php :: array to comma separated string php 
Php :: pagination in codeigniter with example 
Php :: download file laravel s3 
Php :: Laravel - Send mail using mail class 
Php :: update laravel 7 to 8 
Php :: orderby total sales woocommerce 
Php :: how to go one folder back in __dir__ in php 
Php :: firstOrFail() 
Php :: php get first two paragraphs 
Php :: string length laravel validation 
Php :: auto refresh extintion php 
Php :: unique check two clolumn in laravel validation 
Php :: wp_query custom post type 
Php :: strtotime php 
ADD CONTENT
Topic
Content
Source link
Name
1+2 =