mirror of
https://github.com/php/php-src.git
synced 2026-04-04 22:52:40 +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.
21 lines
309 B
PHP
21 lines
309 B
PHP
--TEST--
|
|
bcmul() function
|
|
--EXTENSIONS--
|
|
bcmath
|
|
--INI--
|
|
bcmath.scale=0
|
|
--FILE--
|
|
<?php
|
|
echo bcmul("1", "2"),"\n";
|
|
echo bcmul("-3", "5"),"\n";
|
|
echo bcmul("1234567890", "9876543210"),"\n";
|
|
echo bcmul("2.5", "1.5", 2),"\n";
|
|
echo bcmul("2.555", "1.555", 2),"\n";
|
|
?>
|
|
--EXPECT--
|
|
2
|
|
-15
|
|
12193263111263526900
|
|
3.75
|
|
3.97
|