Home
last modified time | relevance | path

Searched refs:number_format (Results 1 – 22 of 22) sorted by relevance

/PHP-5.5/ext/standard/tests/strings/
H A Dnumber_format_error.phpt2 Test number_format() - wrong params test number_format()
5 /* Prototype : string number_format ( float $number [, int $decimals ] )
11 echo "*** Testing number_format() : error conditions ***\n";
14 number_format();
16 echo "\n-- Testing number_format() function with 3 arguments --\n";
17 number_format(23,2,true);
20 number_format(23,2,true,false,36);
25 *** Testing number_format() : error conditions ***
31 -- Testing number_format() function with 3 arguments --
33 Warning: Wrong parameter count for number_format() in %s on line %d
[all …]
H A Dnumber_format_basic.phpt2 Test number_format() - basic function test number_format()
26 echo "\n-- number_format tests.....default --\n";
28 $res = number_format($values[$i]);
32 echo "\n-- number_format tests.....with two dp --\n";
34 $res = number_format($values[$i], 2);
40 $res = number_format($values[$i], 2, '.', ' ');
46 $res = number_format($values[$i], 2, ',' , ' ');
54 -- number_format tests.....default --
68 -- number_format tests.....with two dp --
82 -- number_format tests.....English format --
[all …]
H A Dbug29538.phpt2 Bug #29538 (number_format and problem with 0)
5 echo number_format(0.25, 2, '', ''), "\n";
6 echo number_format(1234, 2, '', ',');
H A Dbug22187.phpt2 Bug #22187 (possible crash in number_format() function)
5 var_dump(number_format(0.0001, 1));
6 var_dump(number_format(0.0001, 0));
H A Dbug39873.phpt2 Bug #39873 (number_format() breaks with locale & decimal points)
13 echo number_format($num,2);
H A Dbug54332.phpt5 echo number_format(1e300, 2006, '', ' ') . "\n";
/PHP-5.5/ext/standard/tests/math/
H A Dnumber_format_basic.phpt2 Test number_format() - basic function test number_format()
18 echo "\n number_format tests.....default\n";
20 $res = number_format($values[$i]);
24 echo "\n number_format tests.....with two dp\n";
26 $res = number_format($values[$i], 2);
32 $res = number_format($values[$i], 2, '.', ' ');
38 $res = number_format($values[$i], 2, ',' , ' ');
43 number_format tests.....default
57 number_format tests.....with two dp
71 number_format tests.....English format
[all …]
H A Dbug28228.phpt2 Bug #28228 (number_format() does not allow empty decimal separator)
5 echo number_format(1234.5678, 4, '', '') . "\n";
6 echo number_format(1234.5678, 4, NULL, ',') . "\n";
7 echo number_format(1234.5678, 4, 0, ',') . "\n";
8 echo number_format(1234.5678, 4);
H A Dnumber_format_multichar.phpt2 Test number_format() - multiple character separator support
18 echo " number_format tests.....multiple character decimal point\n";
20 $res = number_format($values[$i], 2, '·', ' ');
24 echo "\n number_format tests.....multiple character thousand separator\n";
26 $res = number_format($values[$i], 2, '.' , ' ');
30 echo "\n number_format tests.....multiple character decimal and thousep\n";
32 $res = number_format($values[$i], 2, '·' , ' ');
37 number_format tests.....multiple character decimal point
51 number_format tests.....multiple character thousand separator
65 number_format tests.....multiple character decimal and thousep
H A Dbug25694.phpt2 Bug #25694 (round() and number_format() inconsistency)
8 echo "number format 0.045 = " . number_format(0.045, 2) . "\n\n";
10 echo "number format 0.055 = " . number_format(0.055, 2) . "\n\n";
12 echo "number format 5.045 = " . number_format(5.045, 2) . "\n\n";
14 echo "number format 5.055 = " . number_format(5.055, 2) . "\n\n";
16 echo "number format 3.025 = " . number_format(3.025, 2) . "\n\n";
18 echo "number format 4.025 = " . number_format(4.025, 2) . "\n\n";
H A Dbug62112.phpt2 Bug #62112: number_format() is not binary safe
5 var_dump(number_format(2.5, 2, "\0", "'"));
H A Dbug21523.phpt2 Bug #21523 (number_format tries to allocate negative amount of memory)
7 var_dump(number_format(-2000, 2768));
/PHP-5.5/ext/standard/tests/general_functions/
H A Dbug27678.phpt2 Bug #27678 (number_format() crashes with large numbers)
6 number_format(1e80, 0, '', ' ');
7 number_format(1e300, 0, '', ' ');
8 number_format(1e320, 0, '', ' ');
9 $num = number_format(1e1000, 0, '', ' ');
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result_format.phpt165 $expected[$k] = number_format(round($v), 0, '.', ',');
170 $expected[$k] = number_format(round($v), 0, '.', ',');
175 $expected[$k] = number_format(round($v), 0, '.', ',');
180 $expected[$k] = number_format(round($v), 0, '.', ',');
185 $expected[$k] = number_format(round($v), 0, '.', ',');
190 $expected[$k] = number_format(round($v), 0, '.', ',');
195 $expected[$k] = number_format(round($v), 0, '.', ',');
200 $expected[$k] = number_format(round($v), 0, '.', ',');
H A Dbug42378.phpt163 $expected[$k] = number_format(round($v), 0, '.', ',');
168 $expected[$k] = number_format(round($v), 0, '.', ',');
173 $expected[$k] = number_format(round($v), 0, '.', ',');
178 $expected[$k] = number_format(round($v), 0, '.', ',');
/PHP-5.5/Zend/
H A Dmicro_bench.php261 $num = number_format($last_time,3);
266 $num2 = number_format($last_time - $overhead,3);
278 $num = number_format($total,3);
H A Dbench.php366 $num = number_format($end-$start,3);
379 $num = number_format($total,3);
/PHP-5.5/ext/standard/
H A Dphp_math.h65 PHP_FUNCTION(number_format);
H A Dmath.c1231 PHP_FUNCTION(number_format) in PHP_FUNCTION() argument
H A Dbasic_functions.c2937 PHP_FE(number_format, arginfo_number_format)
/PHP-5.5/
H A Drun-tests.php2759 return number_format($JUNIT['files'][$file_name]['total'], 4);
H A DNEWS3262 . number_format() no longer truncates multibyte decimal points and thousand
7903 - Fixed bug #39873 (number_format() breaks with locale & decimal points).
8581 - Fixed bug #29538 (number_format and problem with 0). (Matt Wilmas)
9012 - Fixed bug #27678 (number_format() crashes with large numbers). (Marcus)
9444 - Fixed bug #33917 (number_format() output with > 1 char separators). (Jani)

Completed in 98 milliseconds