首页  >  文章  >  后端开发  >  PHP - 如何使用bcscale()函数设置或获取所有bc数学函数的默认精度参数?

PHP - 如何使用bcscale()函数设置或获取所有bc数学函数的默认精度参数?

王林
王林转载
2023-08-18 23:09:181116浏览

PHP - 如何使用bcscale()函数设置或获取所有bc数学函数的默认精度参数?

在PHP中,bcscale()函数用于设置所有bc math的默认参数 函数。此函数为所有后续调用的bc数学函数设置默认的比例参数,如果没有显式指定比例参数。

语法

int bcscale($scale)

参数

$bcscale() 参数只接受一个参数,它是必需的整数类型参数。该参数表示小数点后的位数。默认值为0。

返回值

$bcscale() 函数返回旧的精度值。

示例1

<?php
   // default scale : 5
   bcscale(5);

   // The default scale value as 5
   echo bcadd(&#39;107&#39;, &#39;6.5596&#39;), "";

   // this is not the same without bcscale()
   echo bcadd(&#39;107&#39;, &#39;6.55957&#39;, 1), "";

   // the default scale value as 5
   echo bcadd(&#39;107&#39;, &#39;6.55957&#39;), "";
?>

输出

113.55960 113.5 113.55957

Example 2

的中文翻译为:

示例2

<?php
   // set default scale 5
   bcscale(5);

   // set the default scale value as 5
   echo bcadd(&#39;107&#39;, &#39;6.5596&#39;), "";

   // this is not the same without    bcscale()
   echo bcadd(&#39;107&#39;, &#39;6.55957&#39;, 1), "";

   // Changed the default scale value
   bcscale(3);

   // the default scale value as 5
   echo bcadd(&#39;107&#39;, &#39;6.55957&#39;), "";
?>

输出

113.55960 113.55 113.559

以上是PHP - 如何使用bcscale()函数设置或获取所有bc数学函数的默认精度参数?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除