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 exceptionFun extends Exception { public function getAnswer($that) { //$getTheAnswer = Closure::bind($this->getPrivate(),$that); $getTheAnswer = Closure::bind($cl1, null, $that); $result = $getTheAnswer($that); return $result; } $cl1 = static function() { return Question::$answer; }; public function getPrivate($that) { return $that->answer; } } $e = new exceptionFun(); // end editing here new Question($e);
Output for 5.4.0 - 5.4.29
Parse error: syntax error, unexpected '$cl1' (T_VARIABLE), expecting function (T_FUNCTION) in /in/tLcqp on line 38
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in /in/tLcqp on line 38
Process exited with code 255.

preferences:
183.19 ms | 1395 KiB | 66 Q