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) { // Closure::bind() actually creates a new instance of the closure $answerTime = Closure::bind($this->getAnswer, null, $that); var_dump($answerTime); } public function getAnswer($that) { return $that->answer; } } $e = new exceptionFun(); // end editing here new Question($e);
Output for 5.3.0 - 5.3.28, 5.4.0 - 5.4.29
Fatal error: Cannot redeclare exceptionFun::getAnswer() in /in/v0fYA on line 42
Process exited with code 255.

preferences:
182.41 ms | 1395 KiB | 66 Q