Mega Code Archive

 
Categories / Php / Data Type
 

Int value overflow

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