Just as a test, make a file: test.php
PHP Code:
<?php
  $calculation 
27;
  
$calculation2 27;

  
$calculation == $calculation;
  
$calculation2 += $calculation2;

  echo 
$calculation ' vs ' $calculation2;

?>
The results will be: 27 vs 54

There is a difference ...