PHP | bcadd() Function
The bcadd() function in PHP is an inbuilt function and is used to add two arbitrary precision numbers. This function accepts two arbitrary precision numbers as strings and returns the addition of the two numbers after scaling the result to a specified precision.
Syntax:
string bcadd ( $num_str1, $num_str2, $scaleVal)
Parameters: This function accepts three parameters as shown in the above syntax and explained below:
- $num_str1: This parameter is of string type and represents the left operand or one of the two numbers among which we want to perform the addition. This parameter is mandatory.
- $num_str2: This parameter is of string type and represents the right operand or one of the two numbers among which we want to perform the addition. This parameter is mandatory.
- $scaleVal: This parameter is of int type and is optional. This parameter tells the number of digits that will appear after the decimal in the result of addition. It’s default value is zero.
Return Value: This function returns the addition of the two numbers $num_str1 and $num_str2 as string.
Examples:
Input: $num_str1 = 3, $num_str2 = 11.222 Output: 14 Since the parameter $scaleVal is not specified so no digits after decimal is appeared in the result after addition. Input: $num_str1 = 3, $num_str2 = 11.222, $scaleVal = 4 Output: 14.2220
Below programs illustrate the bcadd() function in PHP :
Program 1:
<?php // PHP program to illustrate bcadd() function // input numbers with arbitrary precision $num_str1 = "3"; $num_str2 = "11.222"; // calculates the addition of // the two numbers when $scaleVal is // not specified $res = bcadd($num_str1, $num_str2); echo $res; ?> |
Output:
14
Program 2:
<?php // PHP program to illustrate bcadd() function // input numbers with arbitrary precision $num_str1 = "3"; $num_str2 = "11.222"; // scale value $scaleVal = 4; // calculates the addition of the two // numbers when $scaleVal is specified $res = bcadd($num_str1, $num_str2, $scaleVal); echo $res; ?> |
Output:
14.2220
Reference:
http://php.net/manual/en/function.bcadd.php
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name inside a function in PHP ?
- How to get the function name from within that function using JavaScript ?
- D3.js | d3.max() function
- D3.js | d3.min() function
- PHP | pos() Function
- PHP | Ds\Map xor() Function
- PHP | Ds\Set xor() Function
- PHP | Ds\Map put() Function
- PHP | each() Function
- PHP | pow( ) Function
- CSS | rgb() Function
- PHP | min( ) Function
- PHP | key() Function
- p5.js | hex() function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



