Computer >> Computer tutorials >  >> Programming >> PHP

Comparing float value in PHP


To compare float values in PHP, the code is as follows −

Example

<?php
   $a = 2.5;
   $b = 3.5;
   echo $a;
   echo "\n$b";
   if($a == $b) {
      echo "\nBoth the values are equal!";
   } else {
      echo "\nBoth the values aren\'t equal";
   }
?>

Output

This will produce the following output−

2.5
3.5
Both the values aren\'t equal

Example

Let us now see another example −

<?php
   $a = 1.967;
   $b = 1.969;
   echo $a;
   echo "\n$b";
   if((round($a, 2)) == (round($b, 2))) {
      echo "\nBoth the values are equal!";
   } else {
      echo "\nBoth the values aren\'t equal";
   }
?>

Output

This will produce the following example−

1.967
1.969
Both the values are equal!