PHP Basics Learning Mode

Consider the following PHP script:

<html>
<head>
<title>
    This is a test script.
</title>
</head>
<body>
<?php
    echo (int) ((0.1 + 0.7) * 10);
?>
</body>
</html>

What will be the output of the PHP script?