Advertisement
ph4x35ccb

Overflow inteiros

Feb 24th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Numeros overflow Inteiros</title>
  5. </head>
  6. <body>
  7. <?php
  8. //maximo de inteiro
  9. $maxint = PHP_INT_MAX;
  10.  
  11. var_dump($maxint);
  12. echo "<br>";
  13. $maxint = $maxint + 10;
  14.  
  15. var_dump($maxint)
  16. //grupo de estudos https://www.facebook.com/groups/353340335260087/
  17. //irc.vircio.org #sampa
  18. ?>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement