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 staty() { return Question::$answer; }; public function getAnswer($that) { //$getTheAnswer = Closure::bind($this->getPrivate(),$that); $getTheAnswer = Closure::bind($this->staty(), null, $that); $result = $getTheAnswer($that); return $result; } 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 ';', expecting function (T_FUNCTION) in /in/5Bjig on line 32
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected ';', expecting T_FUNCTION in /in/5Bjig on line 32
Process exited with code 255.

preferences:
185.37 ms | 1386 KiB | 66 Q