git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@322983 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Justin Martin 2012-01-31 19:53:07 +00:00
parent 9592699ed0
commit 771d0e9937

View file

@ -117,7 +117,7 @@ $a = 1.23456789;
$b = 1.23456780;
$epsilon = 0.00001;
if(abs($a-b) < 0.00001) {
if(abs($a-$b) < 0.00001) {
echo "true";
}
?>