Searched refs:bcadd (Results 1 – 16 of 16) sorted by relevance
/PHP-8.2/ext/bcmath/tests/ |
H A D | bcadd_variation001.phpt | 2 bcadd() with non-integers 9 echo bcadd("2.2", "4.3", "2")."\n"; 10 echo bcadd("2.2", "4.3", 2)."\n"; 11 echo bcadd("2.2", "-7.3", "1")."\n"; 12 echo bcadd("2.2", "-7.3", 1)."\n"; 13 echo bcadd("-4.27", "7.3")."\n"; 14 echo bcadd("-4.27", "-7.3");
|
H A D | str2num_formatting.phpt | 11 echo bcadd("1", "2"),"\n"; 12 echo bcadd("1.1", "2", 2),"\n"; 13 echo bcadd("", "2", 2),"\n"; 14 echo bcadd("+0", "2"), "\n"; 15 echo bcadd("-0", "2"), "\n"; 20 echo bcadd(" 0", "2"); 26 echo bcadd("1e1", "2"); 32 echo bcadd("1,1", "2"); 38 echo bcadd("Hello", "2"); 44 echo bcadd("1 1", "2"); [all …]
|
H A D | bcadd.phpt | 2 bcadd() function 9 echo bcadd("1", "2"),"\n"; 10 echo bcadd("-1", "5", 4),"\n"; 11 echo bcadd("-1", "-5", 4),"\n"; 12 echo bcadd("1", "-5", 4),"\n"; 13 echo bcadd("1928372132132819737213", "8728932001983192837219398127471", 2),"\n";
|
H A D | bug80545.phpt | 2 Bug #80545 (bcadd('a', 'a') and bcadd('1', 'a') doesn't throw an exception) 9 bcadd('a', 'a'); 15 bcadd('1', 'a'); 22 bcadd(): Argument #1 ($num1) is not well-formed 23 bcadd(): Argument #2 ($num2) is not well-formed
|
H A D | bcadd_error.phpt | 2 bcadd() requires well-formed values 9 bcadd('a', '1'); 15 bcadd('1', 'a'); 22 bcadd(): Argument #1 ($num1) is not well-formed 23 bcadd(): Argument #2 ($num2) is not well-formed
|
H A D | bcscale.phpt | 9 echo bcadd("1", "2"),"\n"; 11 echo bcadd("1", "2"),"\n"; 13 echo bcadd("1", "2"),"\n"; 15 echo bcadd("1", "2"),"\n";
|
H A D | scale.phpt | 8 'bcadd: ', bcadd('2', '1', 5), PHP_EOL, 17 bcadd: 3.00000
|
H A D | scale_ini.phpt | 10 'bcadd: ', bcadd('2', '1'), PHP_EOL, 19 bcadd: 3.00000
|
H A D | bcscale_variation002.phpt | 2 bcadd() incorrect argument count 9 echo bcadd("-4.27", "7.3");
|
H A D | bug46781.phpt | 7 var_dump(bcadd('-0.0', '-0.0', 1));
|
H A D | bug78238.phpt | 7 var_dump(bcadd("0", "-0.1"));
|
H A D | negative_scale.phpt | 10 bcadd('1','2',-1); 61 bcadd(): Argument #3 ($scale) must be between 0 and 2147483647
|
H A D | bug60377.phpt | 16 $var414 = bcadd(0,-1,10);
|
/PHP-8.2/ext/bcmath/ |
H A D | bcmath_arginfo.h | 47 ZEND_FUNCTION(bcadd); 60 ZEND_FE(bcadd, arginfo_bcadd)
|
H A D | bcmath.stub.php | 6 function bcadd(string $num1, string $num2, ?int $scale = null): string {} function
|
H A D | bcmath.c | 153 PHP_FUNCTION(bcadd) in PHP_FUNCTION() argument
|
Completed in 36 milliseconds