Lines Matching refs:n
6 die("SKIP money_format - not supported\n");
20 echo "*** Testing money_format() : basic functionality***\n";
28 echo "Format values with 14 positions, 8 digits to left, 2 to right using national format\n";
29 echo gettype(money_format('%14#8.2n', $value))."\n";
30 echo gettype(money_format('%14#8.2n', $negative_value))."\n";
33 echo "Format again but with ( for negative values\n";
34 echo gettype(money_format('%(14#8.2n', $value))."\n";
35 echo gettype(money_format('%(14#8.2n', $negative_value))."\n";
38 echo "Format with 0 for padding character\n";
39 echo gettype(money_format('%=014#8.2n', $value))."\n";
40 echo gettype(money_format('%=014#8.2n', $negative_value))."\n";
43 echo "Format again with * for padding character\n";
44 echo gettype(money_format('%=*14#8.2n', $value))."\n";
45 echo gettype(money_format('%=*14#8.2n', $negative_value))."\n";
48 echo "Format again but disable grouping character\n";
49 echo gettype(money_format('%=*^14#8.2n', $value))."\n";
50 echo gettype(money_format('%=*^14#8.2n', $negative_value))."\n";
53 echo "Format again suppress currency symbol\n";
54 echo gettype(money_format('%=*!14#8.2n', $value))."\n";
55 echo gettype(money_format('%=*!14#8.2n', $negative_value))."\n";