3v4l.org

run code in 300+ PHP versions simultaneously
<?php abstract class HTMLDecorator { /** @var \ArrayObject */ protected $notes; public function format(){ $html = ''; foreach ($this->getNodes() as $node) $html .= "<p>{$node}</p>"; return $html; } } class HTML extends HTMLDecorator{ public function __construct(){ $this->nodes = new \ArrayObject(); } public function getNodes(){ return $this->nodes; } } class BlockHtml extends HTMLDecorator{ protected $html; public function __construct(HTMLDecorator $html){ $this->html = $html; } public function getNodes() { $this->html->getNodes()->append('Block html'); return $this->html->getNodes(); } } class ImageHtml extends HTMLDecorator{ protected $html; public function __construct(HTMLDecorator $html){ $this->html = $html; } public function getNodes() { $this->html->getNodes()->append('Image html'); return $this->html->getNodes(); } } $html = new HTML(); $html = new BlockHTML($html); $html = new ImageHTML($html); //echo $html->format();
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Creation of dynamic property HTML::$nodes is deprecated in /in/0aWYR on line 22

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:
44.03 ms | 401 KiB | 8 Q