money_format – PHP String Functions
Syntax :
Description :
The money_format() function formats a number to a currency string.
This function inserts a formatted number where there is a percent (%) sign in the main string.
Parameter :
- format – This is Required parameter.
Possible format values are:
Padding and Flags:
- =f – Specifies the character (f) to be used as padding (Example: %=t this uses “t” as padding). Space is by default.
- ^ – Removes the use of grouping characters.
- + or ( – Specifies how to show positive and negative numbers. If “+” is used, the local setting for + and – will be used (usually a sign in front of negative numbers, and nothing in front of positive numbers). If “(” is used, negative numbers are enclosed in parenthesis. Default is “+”
- ! – Stops the use of currency symbols in the output string
- – If “-” is used, all fields are left-justified. Default is right-justified
Field width:
- x – Specifies the minimum field width (x). Default is 0
- #x – Specifies the maximum number (x) of digits expected to the left of the decimal point. This is used to keep formatted output aligned in the same columns. If the number of digits are bigger than x, this specification is ignored
- .x – Specifies the maximum number (x) of digits expected to the right of the decimal point. If x is 0, the decimal point and the digits to its right will not be shown. Default is local settings
Conversion characters:
- i – The number is formatted to international currency format
- n – The number is formatted to national currency format
- % – Returns the % character
- Number – This is the number which we want to format.
Output :
Characters before and after the formatting string will be returned unchanged. Non-numeric number causes returning NULL and emitting E_WARNING.
money_format() returns a formatted version of number.
Related articles : setlocale() , sscanf() , sprintf() , printf(), fprintf() , number_format()
money_format() – PHP Functions Example 1 : International en_US format
<?php $strnumber = 5678.12; setlocale(LC_MONETARY,"en_US"); echo money_format("The price is %i", $strnumber); ?>
See below is the output of above code in Web browser.
money_format() – PHP Functions Example 2 : International format (Germany) with 2 decimals:
<?php $strnumber = 5678.12; setlocale(LC_MONETARY,"de_DE"); echo money_format("%.2n", $strnumber); ?>
See below is the output of above code in Web browser.
5678,12 EUR
money_format() – PHP Functions Example 3 : Negative number, US national format with () to indicate negative numbers and 2 digits of right precision and “*” as a fill character:
<?php $strnumber = -5678.12; echo money_format("%=*(#10.2n",$strnumber); ?>
See below is the output of above code in Web browser.