3v4l.org

run code in 300+ PHP versions simultaneously
<?php Interface ShapeInterface { getArea(); } Class ShapeManager { public function __construct(ShapeInterface $shape) { $this->shape = $shape; $this->getArea(); } public function getArea() { $this->shape->getArea(); } } Class Circle { public function getArea() { return 'circle area'; } } Class Sqaure { public function getArea() { return 'square area'; } } $shape = new ShapeManager(new Circle); $shape->getArea();
Output for 7.1.0 - 7.1.7
Parse error: syntax error, unexpected 'getArea' (T_STRING), expecting function (T_FUNCTION) or const (T_CONST) in /in/2BG2l on line 4
Process exited with code 255.
Output for 7.0.0 - 7.0.20
Parse error: syntax error, unexpected 'getArea' (T_STRING), expecting function (T_FUNCTION) in /in/2BG2l on line 4
Process exited with code 255.

preferences:
177.53 ms | 1395 KiB | 36 Q