### Description The following code: ```php <?php $a = 676.71; $b = 108.05; var_dump($a - $b); ``` Resulted in this output: ``` float(568.6600000000001) ``` But I expected this output instead: ``` float(568.66) ```  This BC break is not documented at https://www.php.net/manual/en/migration80.incompatible.php Hence, I'd consider this a bug. ### PHP Version PHP 8.* ### Operating System any