3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* Challenge 3: Use reflection to get access to Question::$answer from $e->getAnswer */ class Question { private $answer = 42; public function __construct($e) { try { throw $e; } catch (Exception $e) { echo $e->getAnswer($this) . PHP_EOL; } } } // start editing here class E extends Exception { public getAnswer($answer) { $class = new ReflectionClass($answer); var_dump($class->getProperty('answer')); } } $e = new E; // end editing here new Question($e);
Output for 5.4.0 - 5.4.27
Parse error: syntax error, unexpected 'getAnswer' (T_STRING), expecting variable (T_VARIABLE) in /in/DGBMc on line 24
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_STRING, expecting T_VARIABLE in /in/DGBMc on line 24
Process exited with code 255.

preferences:
185.59 ms | 1395 KiB | 64 Q