mirror of
https://github.com/php/php-src.git
synced 2026-04-18 05:21:02 +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.
11 lines
163 B
PHP
11 lines
163 B
PHP
--TEST--
|
|
Bug #66364 (BCMath bcmul ignores scale parameter)
|
|
--EXTENSIONS--
|
|
bcmath
|
|
--FILE--
|
|
<?php
|
|
var_dump(bcmul('0.3', '0.2', 4));
|
|
?>
|
|
--EXPECT--
|
|
string(6) "0.0600"
|