Lines Matching refs:number_format
2 Test number_format() - basic function test number_format()
5 echo "*** Testing number_format() : basic functionality ***\n";
19 echo "\n-- number_format tests.....default --\n";
21 $res = number_format($values[$i]);
25 echo "\n-- number_format tests.....with two dp --\n";
27 $res = number_format($values[$i], 2);
31 echo "\n-- number_format tests.....English format --\n";
33 $res = number_format($values[$i], 2, '.', ' ');
37 echo "\n-- number_format tests.....French format --\n";
39 $res = number_format($values[$i], 2, ',' , ' ');
44 *** Testing number_format() : basic functionality ***
46 -- number_format tests.....default --
59 -- number_format tests.....with two dp --
72 -- number_format tests.....English format --
85 -- number_format tests.....French format --