(PHP 4, PHP 5)
bcadd — جمع دو عدد با دقت دلخواه
جمع left_operand و right_operand.
عملگر چپ به عنوان رشته.
عملگر راست به عنوان رشته.
This optional parameter is used to set the number of digits after the decimal place in the result. You can also set the global default scale for all functions by using bcscale().
جمع دو عملوند به عنوان رشته.
Example #1 مثال bcadd()
<?php
$a = '1.234';
$b = '5';
echo bcadd($a, $b); // 6
echo bcadd($a, $b, 4); // 6.2340
?>