How about the floor function which rounds the float down to the previous integer value.
$integer = floor ($float_number);
And guess what else... There is a ceil() function as well which will round the float up to the next integer for you.
$integer = ceil ($float_number);
Happy Coding!