3v4l.org

run code in 300+ PHP versions simultaneously
<?php $posts = array("pt", "r", "bp"); $posts = array_slice($posts, 0, 3); print_r($posts); for ($i = 0; $i <= 3; $i++){ echo $posts[i]; } ?>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Array ( [0] => pt [1] => r [2] => bp ) Fatal error: Uncaught Error: Undefined constant "i" in /in/M2dYi:8 Stack trace: #0 {main} thrown in /in/M2dYi on line 8
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Array ( [0] => pt [1] => r [2] => bp ) Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/M2dYi on line 8 Notice: Undefined index: i in /in/M2dYi on line 8 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/M2dYi on line 8 Notice: Undefined index: i in /in/M2dYi on line 8 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/M2dYi on line 8 Notice: Undefined index: i in /in/M2dYi on line 8 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/M2dYi on line 8 Notice: Undefined index: i in /in/M2dYi on line 8
Output for 7.3.32 - 7.3.33
Array ( [0] => pt [1] => r [2] => bp ) Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/M2dYi on line 8 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/M2dYi on line 8 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/M2dYi on line 8 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/M2dYi on line 8
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33
Array ( [0] => pt [1] => r [2] => bp ) Notice: Use of undefined constant i - assumed 'i' in /in/M2dYi on line 8 Notice: Undefined index: i in /in/M2dYi on line 8 Notice: Use of undefined constant i - assumed 'i' in /in/M2dYi on line 8 Notice: Undefined index: i in /in/M2dYi on line 8 Notice: Use of undefined constant i - assumed 'i' in /in/M2dYi on line 8 Notice: Undefined index: i in /in/M2dYi on line 8 Notice: Use of undefined constant i - assumed 'i' in /in/M2dYi on line 8 Notice: Undefined index: i in /in/M2dYi on line 8

preferences:
230.38 ms | 403 KiB | 330 Q