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


PHP bcsub()用法及代码示例


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

用法:

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

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


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

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

例子:

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

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

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

程序1:

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

输出:

8

程序2:

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

输出:

8.2220

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



相关用法


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