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 = BlockHTML($html); $html = 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/7Ub0Q on line 22 Fatal error: Uncaught Error: Call to undefined function BlockHTML() in /in/7Ub0Q:65 Stack trace: #0 {main} thrown in /in/7Ub0Q on line 65
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:
43.31 ms | 401 KiB | 8 Q