diff --git a/reference/strings/functions/money-format.xml b/reference/strings/functions/money-format.xml index 898b5079b8..6f9d44f84b 100644 --- a/reference/strings/functions/money-format.xml +++ b/reference/strings/functions/money-format.xml @@ -190,7 +190,7 @@ The number is formatted according to the locale's national - currency format (e.g. for the de_DE locale: DM1.234,56). + currency format (e.g. for the de_DE locale: EU1.234,56). @@ -270,7 +270,7 @@ echo money_format('%i', $number) . "\n"; // Italian national format with 2 decimals` setlocale(LC_MONETARY, 'it_IT'); echo money_format('%.2n', $number) . "\n"; -// L. 1.234,56 +// Eu 1.234,56 // Using a negative number $number = -1234.5672; @@ -291,7 +291,7 @@ echo money_format('%=*(#10.2n', $number) . "\n"; // and using the international format for the de_DE locale. setlocale(LC_MONETARY, 'de_DE'); echo money_format('%=*^-14#8.2i', 1234.56) . "\n"; -// DEM 1234,56**** +// Eu 1234,56**** // Let's add some blurb before and after the conversion specification setlocale(LC_MONETARY, 'en_GB');