fork(1) download
  1. <?php
  2.  
  3. $x = PHP_INT_MAX;
  4. echo "9000 => ", $x, PHP_EOL;
  5.  
  6. $x++;
  7. echo "over 9000 => ", $x, PHP_EOL;
Success #stdin #stdout 0.02s 23420KB
stdin
Standard input is empty
stdout
9000 => 9223372036854775807
over 9000 => 9.2233720368548E+18