Data Type Php

$too_big = 111;
for ($count = 0; $count < 5; $count++) {
    $too_big = 1000 * $too_big;
    print("Is $too_big still an integer?
");
}
?>