3v4l.org

run code in 300+ PHP versions simultaneously
<?php cclass foo { public function printItem($string) { echo 'Foo: ' . $string . PHP_EOL; } public function printPHP() { echo 'PHP is great.' . PHP_EOL; } } class bar extends foo { public function printItem($string) { echo 'Bar: ' . $string . PHP_EOL; } } $foo = new foo(); $bar = new bar(); $foo->printItem('baz'); // Output: 'Foo: baz' $foo->printPHP(); // Output: 'PHP is great' $bar->printItem('baz'); // Output: 'Bar: baz' $bar->printPHP(); // Output: 'PHP is great' ?>
Output for 5.4.0 - 5.4.29
Parse error: syntax error, unexpected 'foo' (T_STRING) in /in/6EeZi on line 4
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_STRING in /in/6EeZi on line 4
Process exited with code 255.

preferences:
181.83 ms | 1386 KiB | 66 Q