Integer Compatible Floats



In PHP 8.1:

<?php
function doTheNumber(int $number)
{
    var_dump( $number );
}

doTheNumber( 42.76 );

Deprecated: Implicit conversion from non-compatible float-string "42.76" to int
int(42)