php中有的时候直接使用"<" 或 ">" 并不能够正确地来比较两个浮点类型数据的大小。
Method 1:
php中提供了一个原生的方法可以来解决这个问题。
下面就来简单介绍一下这个原生的函数:)
bccomp
Description
int
bccomp (
string $left_operand ,
string $right_operand [,
int $scale ] )
Compares the left_operand to the right_operand and returns the result as an integer.
Parameters
-
left_operand
-
The left operand, as a string.
-
The right operand, as a string.
-
The optional scale parameter is used to set the number of digits after the decimal place which will be used in the comparison.
-
right_operand
scale
Return Values
Returns 0 if the two operands are equal, 1 if the left_operand is larger than the right_operand, -1 otherwise.
Example:
Method 2:
直接使用 "-" 运算来实现。将二者取差的结果与0进行比较。