From 9cfea04a70e990c98fa6dd540b5f476b2ebf6ad5 Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Sun, 14 Mar 2010 22:25:56 +0000 Subject: [PATCH] Fixed bug #51151 (Example is wrong) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@296206 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/money-format.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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');