3v4l.org

run code in 300+ PHP versions simultaneously
<?php private $term = 3; $array = array(array(141,151,161), 2, 3, array(101, 202, 303)); function DisplayArray($array) { foreach ($array as $value) { if (is_array($value)) { DisplayArray($value); } else { echo $value . " "; } } } DisplayArray($array); echo 0x10;
Output for 7.0.0 - 7.0.2
Parse error: syntax error, unexpected 'private' (T_PRIVATE), expecting end of file in /in/4nSJS on line 2
Process exited with code 255.
Output for 5.5.24 - 5.5.31, 5.6.8 - 5.6.17
Parse error: syntax error, unexpected 'private' (T_PRIVATE) in /in/4nSJS on line 2
Process exited with code 255.

preferences:
165.03 ms | 1395 KiB | 28 Q