--TEST-- Test money_format() function : basic functionality using national currency symbols and de_DE locale --SKIPIF-- --FILE-- ===DONE=== --EXPECT-- *** Testing money_format() : basic functionality using national currency symbols and de_DE locale*** Format values with 14 positions, 8 digits to left, 2 to right using national format string(18) " 1.234,57 EUR" string(18) "- 1.234,57 EUR" Format again but with ( for negative values string(18) " 1.234,57 EUR" string(19) "( 1.234,57 EUR)" Format with 0 for padding character string(18) " 000001.234,57 EUR" string(18) "-000001.234,57 EUR" Format again with * for padding character string(18) " *****1.234,57 EUR" string(18) "-*****1.234,57 EUR" Format again but disable grouping character string(16) " ****1234,57 EUR" string(16) "-****1234,57 EUR" Format again suppress currency symbol string(14) " *****1.234,57" string(14) "-*****1.234,57" ===DONE===