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 currency formator

$number = 100000;
echo number_format($number);
// 100,000
Comment

PREVIOUS NEXT
Code Example
Php :: config file php 
Php :: how to disable opcache 
Php :: time zone for php is not set (configuration parameter "date.timezone"). 
Php :: check if checkbox is not checked laravel 8 
Php :: How to calculate the sum of values in a list PHP 
Php :: comment php 
Php :: max title limit woocommerce product 
Php :: php array insert before key 
Php :: how to merge 2 laravel eloquent records 
Php :: How To Check If A String Ends With Another String In PHP 
Php :: mysql get number of rows php 
Php :: php lowercase assoc array 
Php :: php unique associative nested array by value 
Php :: search laravel 
Php :: stripslashes 
Php :: add-basic-controller-imports 
Php :: php json_decode not working 
Php :: storepublicly laravel 
Php :: laravel collection namespace 
Php :: carbon compare same date 
Php :: laravel trans with parameters 
Php :: laravel blade global variable 
Php :: laravel vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:36 
Php :: get redirect url for laravel socialite with api 
Php :: validate columns laravel excel 
Php :: EntityManager get repository 
Php :: symfony form get errors 
Php :: laravel convert querybuilder to string 
Php :: dependable validation in laravel 
Php :: php Program for Sum of the digits of a given number 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =