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


PHP bcscale()用法及代码示例


bcscale()函数是PHP中的内置函数。它为所有bc数学函数调用设置默认的小数位数参数。当我们在程序中调用函数bcscale()时,在此函数中传递的参数将成为默认比例因子,默认情况下为零。

用法:

int bcscale($scale)

参数:该函数接受单个参数$scale,它是int类型,是强制性的。此参数表明所有bc数学函数的函数调用结果中小数点后出现的位数。其默认值为零。


返回值:此函数返回旧的比例值。

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

程序1:

<?php 
  
// default scale : 3 
bcscale(3); 
  
// takes the default scale value as 3  
// which is declared at the beginning  
echo bcadd('111', '6.55957'), "\n"; // 16.007 
  
// this is not the same without bcscale() 
echo bcadd('111', '6.55957', 1), "\n"; // 16.007 
  
//  takes the default scale value as 3  
// which is declared at the beginning  
echo bcadd('111', '6.55957'), "\n";  
?>

输出:

117.559 
117.5 
117.559

程序2:

<?php 
  
// default scale : 3 
bcscale(5); 
  
// takes the default scale value as 3  
// which is declared at the beginning  
echo bcadd('111', '6.55957'), "\n"; // 16.007 
  
// this is not the same without bcscale() 
echo bcadd('111', '6.55957', 1), "\n"; // 16.007 
  
// default scale value changes 
bcscale(2);  
  
// takes the default scale value as 2 
// which is declared  
echo bcadd('111', '6.55957'), "\n";  
?>

输出:

117.55957 
117.5 
117.55

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



相关用法


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