在PHP中,bccomp()函数用于比较两个任意数字。 bccomp()函数接受两个任意精度的数字字符串作为输入,并在比较这两个数字后输出一个整数。
int bccomp($left_string1, $right_string1, $scaleval)
函数bccomp()接受三个不同的参数− $left_string1、$right_string2和$scaleval。
$left_string1−表示我们要进行比较的两个给定数字之一的左操作数,它是一个字符串类型的参数。
$right_string2−表示我们要进行比较的两个给定数字之一的右操作数,它是一个字符串类型的参数。
$scaleval−返回在比较中将使用的小数位数,它是一个整数类型的参数,默认值为零。
函数bccomp() 返回两个数字$left_string1和$right_string2的比较结果。
如果$left_string1大于$right_string2,则返回1。
如果$left_string1小于$right_string2,则返回-1。
如果两个给定的数字相等,则函数bccomp()返回0。
<?php // input two numbers $left_string1 = "3.12"; $right_string2 = "3"; // calculates the comparison of the two //number without scale value $result = bccomp($left_string1, $right_string2); //used equal parameters echo "The result is: ", $result; ?>
The result is: 0
上述程序返回0,因为在没有比例值的情况下使用了相等的参数。
<?php // input two numbers $left_string1 = "30.12"; // left value > right value $right_string2 = "3"; //used scale value two $scaleval = 2; // calculates the comparison of the two //number without scale value $result = bccomp($left_string1, $right_string2); //used equal parameters echo "The output is: ", $result; ?>
The output is: 1
它返回1,因为左值大于右值。
<?php // input two numbers $left_string1 = "30.12"; $right_string2 = "35"; // Right value > Left value //used scale value two $scaleval = 2; // calculates the comparison of the two //number without scale value $result = bccomp($left_string1, $right_string2); //used equal parameters echo $result; ?>
-1
它返回-1,因为Right值大于Left值。
以上是PHP - 如何使用bccomp()函数比较两个任意精度的数字?的详细内容。更多信息请关注PHP中文网其他相关文章!