BC Math Functions
PHP Manual

bcadd

(PHP 4, PHP 5)

bcaddجمع دو عدد با دقت دلخواه

Description

string bcadd ( string $left_operand , string $right_operand [, int $scale ] )

جمع left_operand و right_operand.

Parameters

left_operand

عملگر چپ به عنوان رشته.

right_operand

عملگر راست به عنوان رشته.

scale

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().

Return Values

جمع دو عملوند به عنوان رشته.

Examples

Example #1 مثال bcadd()

<?php

$a 
'1.234';
$b '5';

echo 
bcadd($a$b);     // 6
echo bcadd($a$b4);  // 6.2340

?>

See Also


BC Math Functions
PHP Manual