php-8.0.30-src/ext/bcmath/tests/bug.66364.phpt

13 lines
238 B
PHP

--TEST--
Bug #66364 (BCMath bcmul ignores scale parameter)
--SKIPIF--
<?php
if (!extension_loaded('bcmath')) die('skip bcmath extension not available');
?>
--FILE--
<?php
var_dump(bcmul('0.3', '0.2', 4));
?>
--EXPECT--
string(6) "0.0600"