<?php
//PHP比较两个浮点数的大小
$a
=
'1.999999999999999999998'
;
$b
'1.999999999999999999999'
$flag
bccomp
(
,
, 21);
var_dump(
);
// int(-1) 说明b比a大
exit
?>