3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Zend_Application_Resource_View extends Zend_Application_Resource_ResourceAbstract { protected $_view; protected $_class = 'Test_View'; public function __construct($options = null) { if (isset($options['class'])) { $this->_class = $options['class']; unset($options['class']); } $this->_view = new {$this->_class}($options); } public function setHeadTitle($options) { } public function getView() { return $this->_view; } } class Test_View { public function __construct($x) { var_dump($x); } } new Zend_Application_Resource_View(array(1,2,3))
Output for 5.3.0 - 5.3.21, 5.4.0 - 5.4.11
Parse error: syntax error, unexpected '{' in Oitj2 on line 14
Process exited with code 255.

preferences:
173.69 ms | 1395 KiB | 41 Q