请不要在程序中直接使用等号、大于、加、减、乘、除等操作浮点数,如果需要对浮点数进行以上操作,请使用下面的BC系列函数。以确保准确性及精度。
int bccomp ( string $left_operand , string $right_operand [, int $scale ] )
string bcadd ( string $left_operand , string $right_operand [, int $scale ] )
string bcsub ( string $left_operand , string $right_operand [, int $scale ] )
string bcmod ( string $left_operand , string $modulus )
string bcdiv ( string $left_operand , string $right_operand [, int $scale ] )
string bcmul ( string $left_operand , string $right_operand [, int $scale ] )
string bcpow ( string $left_operand , string $right_operand [, int $scale ] )
string bcsqrt ( string $operand [, int $scale ] )
bool bcscale ( int $scale )
原文地址:http://blog.csdn.net/hel12he/article/details/45342387