3v4l.org

run code in 300+ PHP versions simultaneously
<?php phpversion() >= "5.6.15"; $two_pow_64 = pow(2,64); echo (int) INF,"\n"; echo (int) $two_pow_64,"\n"; echo ((int) INF) % 2, "\n"; echo ((int) INF) / ((int) $two_pow_64); try { echo intdiv((int) INF), ((int) $two_pow_64); } catch (Error $e) { echo $e->getMessage(); } try { echo ((int) INF) % ((int) $two_pow_64); } catch (Error $e) { echo $e->getMessage(); }
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0
0 0 0 Warning: Division by zero in /in/CjRCr on line 8 NAN Warning: intdiv() expects exactly 2 parameters, 1 given in /in/CjRCr on line 10 0Modulo by zero
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.28
-9223372036854775808 0 0 Warning: Division by zero in /in/CjRCr on line 8 Fatal error: Call to undefined function intdiv() in /in/CjRCr on line 10
Process exited with code 255.

preferences:
101.66 ms | 401 KiB | 88 Q