1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 05:21:02 +02:00
Files
archived-php-src/ext/bcmath/tests/bug.66364.phpt
Max Semenik 56f90492d6 Migrate skip checks to --EXTENSIONS--, p1
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.
2021-03-22 17:51:02 +01:00

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"