mirror of
https://github.com/php/php-src.git
synced 2026-03-31 20:53:00 +02:00
For rationale, see https://github.com/php/php-src/pull/6787 Extensions migrated in this part: * bcmath * bz2 * calendar * com_dotnet * ctype Closes GH-6797.
17 lines
283 B
PHP
17 lines
283 B
PHP
--TEST--
|
|
bcadd() function
|
|
--EXTENSIONS--
|
|
bcmath
|
|
--INI--
|
|
bcmath.scale=0
|
|
--FILE--
|
|
<?php
|
|
echo bcadd("1", "2"),"\n";
|
|
echo bcadd("-1", "5", 4),"\n";
|
|
echo bcadd("1928372132132819737213", "8728932001983192837219398127471", 2),"\n";
|
|
?>
|
|
--EXPECT--
|
|
3
|
|
4.0000
|
|
8728932003911564969352217864684.00
|