3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* Challenge 2: Implement AnswerInterface and get Question to echo "4". */ class Question { public function __construct(AnswerInterface $answer) { echo "What is 2 + 2?\n"; $answer = $answer->get()->the()->answer(); if ($answer instanceof AnswerInterface) { echo $answer . PHP_EOL; } } } interface AnswerInterface { public function get(); public function the(); public function answer(); } class Answer implements AnswerInterface { private $answer = (int) 4; public function get() { return $this; } public function the() { return $this; } public function answer() { return $this->answer; } } $answer = new Answer; $question = new Question($answer);
Output for 5.4.0 - 5.4.28
Parse error: syntax error, unexpected '(int)' (int) (T_INT_CAST) in /in/4366W on line 29
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_INT_CAST in /in/4366W on line 29
Process exited with code 255.

preferences:
195.71 ms | 1395 KiB | 65 Q