Lines Matching refs:number_format
2 Test number_format() - basic function test number_format()
17 echo "\n number_format tests.....default\n";
19 $res = number_format($values[$i]);
23 echo "\n number_format tests.....with two dp\n";
25 $res = number_format($values[$i], 2);
29 echo "\n number_format tests.....English format\n";
31 $res = number_format($values[$i], 2, '.', ' ');
35 echo "\n number_format tests.....French format\n";
37 $res = number_format($values[$i], 2, ',' , ' ');
42 number_format tests.....default
55 number_format tests.....with two dp
68 number_format tests.....English format
81 number_format tests.....French format