3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait OptionzTrait { protected $_options = array(); public function setOptions(array $options) { $this->_options = array_replace_recursive( $this->_options, $options ); } public function getOptions() { return $this->_options; } } class Optionz { use OptionzTrait; protected $_options = array( 'fact' => null, 'inception' => array( 'options' => array() ) ); protected $_inception; public function __construct($options) { $this->setOptions($options); } public function stateFact() { echo $this->_options['fact']; } public function getInception() { if ($this->_inception === null) { $this->_inception = new static($this->_options['inception']['options']); } return $this->_inception; } } $optionz = new Optionz(array('inception' => array('fact' => 'it is known'))); $optionz->getInception()->stateFact(); // caveat: nested properties are only propagated initially $optionz->getInception()->setOptions(array('fact' => 'this works')); $optionz->setOptions(array('inception' => array('fact' => 'this doesnt')));
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Optionz and OptionzTrait define the same property ($_options) in the composition of Optionz. However, the definition differs and is considered incompatible. Class was composed in /in/EWgs7 on line 18
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
51.85 ms | 401 KiB | 8 Q