当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP bcadd()用法及代码示例


PHP中的bcadd()函数是一个内置函数,用于添加两个任意精度数字。此函数接受两个任意精度的数字作为字符串,并在将结果缩放到指定的精度后返回两个数字的加法。

用法:

string bcadd ( $num_str1, $num_str2, $scaleVal)

参数:此函数接受上述语法中所示的三个参数,并在下面进行说明:


  • $num_str1:此参数为字符串类型,表示左侧操作数或我们要执行加法运算的两个数字之一。此参数是必需的。
  • $num_str2:此参数为字符串类型,表示正确的操作数或我们要执行加法运算的两个数字之一。此参数是必需的。
  • $scaleVal:此参数为int类型,是可选的。此参数告诉加法结果中小数点后将出现的位数。默认值为零。

返回值:此函数以字符串形式返回两个数字$num_str1和$num_str2的相加。

例子:

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

以下示例程序旨在说明PHP中的bcadd()函数:

程序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; 
   
?>

输出:

14

程序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; 
   
?>

输出:

14.2220

参考:
http://php.net/manual/en/function.bcadd.php



相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 PHP | bcadd() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。