Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/tests/strings/
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-7.4/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 Dnumber_format_negative_zero.phpt2 Prevent number_format from returning negative zero
9 var_dump(number_format($number, 2));
10 var_dump(number_format(-0.01, 2));
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-7.4/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-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result_format.phpt167 $expected[$k] = number_format(round($v), 0, '.', ',');
172 $expected[$k] = number_format(round($v), 0, '.', ',');
177 $expected[$k] = number_format(round($v), 0, '.', ',');
182 $expected[$k] = number_format(round($v), 0, '.', ',');
187 $expected[$k] = number_format(round($v), 0, '.', ',');
192 $expected[$k] = number_format(round($v), 0, '.', ',');
197 $expected[$k] = number_format(round($v), 0, '.', ',');
202 $expected[$k] = number_format(round($v), 0, '.', ',');
H A Dbug42378.phpt162 $expected[$k] = number_format(round($v), 0, '.', ',');
167 $expected[$k] = number_format(round($v), 0, '.', ',');
172 $expected[$k] = number_format(round($v), 0, '.', ',');
177 $expected[$k] = number_format(round($v), 0, '.', ',');
/PHP-7.4/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-7.4/ext/standard/
H A Dphp_math.h62 PHP_FUNCTION(number_format);
H A Dmath.c1261 PHP_FUNCTION(number_format) in PHP_FUNCTION() argument
H A Dbasic_functions.c2969 PHP_FE(number_format, arginfo_number_format)
/PHP-7.4/
H A Drun-tests.php3477 return number_format($JUNIT['files'][$file_name]['total'], 4);

Completed in 50 milliseconds