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


PHP bcmul()用法及代码示例


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

用法:

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

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


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

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

例子:

Input:  $num_str1 = 3, $num_str2 = 11.222
Output: 33
Explanation: Since the parameter $scaleVal is not 
specified so no digits after decimal is appeared 
in the result after multiplication.

Input:  $num_str1 = 3, $num_str2 = 11.222, $scaleVal = 4
Output: 36.6660

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

程序1:

<?php 
// PHP program to illustrate bcmul() function 
   
// input numbers with arbitrary precision 
$num_str1 = "3"; 
$num_str2 = "11.222"; 
   
// calculates the multiplication of the two 
// numbers when $scaleVal is not specified 
$res = bcmul($num_str1, $num_str2); 
  
echo $res; 
   
?>

输出:

33

程序2:

<?php 
// PHP program to illustrate bcmul() function 
   
// input numbers with arbitrary precision 
$num_str1 = "3"; 
$num_str2 = "11.222"; 
  
// scale value 
$scaleVal = 3; 
   
// calculates the multiplication of the two 
// numbers when $scaleVal is specified 
$res = bcmul($num_str1, $num_str2, $scaleVal); 
  
echo $res; 
   
?>

输出:

33.666

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



相关用法


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