<!DOCTYPE html>
<html>
<body>
<?php
echo intdiv(8, 4) . "<br>";
echo intdiv(5, 2) . "<br>";
echo intdiv(-5, -2);
?>
</body>
</html>