summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests/bug.66364.phpt
blob: 08777c5f59094df5690f868f12ac0147aabdc23f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--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"