|
bcmul
Multiply two arbitrary precision number
(PHP 4, PHP 5)
Example 340. bcmul() example<?php Code Examples / Notes » bcmulxpheas
if you have compiled php width "--disable-bcmath", you can use this: <?php function bcmul($_ro, $_lo, $_scale=0) { return round($_ro*$_lo, $_scale); } ?> |