xref: /php-src/ext/bcmath/tests/bug66364.phpt (revision ee226128)
1--TEST--
2Bug #66364 (BCMath bcmul ignores scale parameter)
3--EXTENSIONS--
4bcmath
5--FILE--
6<?php
7var_dump(bcmul('0.3', '0.2', 4));
8?>
9--EXPECT--
10string(6) "0.0600"
11