Hello folks! welcome back to a new edition of our tutorial on PHP. In this tutorial guide, we are going to be studying about the PHP money_format() Function.
The PHP money_format() function is used to format a number as currency string.
The PHP money_format() function is used to format a number as currency string.
syntax
Following below is the syntax to use this function -
string money_format ( string $format , float $number )
Parameter Details
Sr.No | Parameters & Description |
---|---|
1 | string It contains the information about specified string to be formatted. |
2 | number The number to be inserted at the %-sign in the format string. |
Return Value
This function returns the formatted strings on success and NULL on failure.
Example
Try out the example below -
<?php $input = 5000.77; setlocale(LC_MONETARY,"de_DE"); echo money_format("%.2n", $input); ?>
Output
When the above code is executed, it will produce the following result -
5.000,77 EUR
READ: PHP | md5() Function
Alright guys! This is where we are going to be rounding up for this tutorial post. In our next tutorial, we will be studying about the PHP nl_langinfo() Function.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.