3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Container { protected $items; public function __construct() { $this->items = []; } public function exists($name) { return isset($this->item[$name]); } public function get($name) { if (!isset($this->item[$name])) { throw new RuntimeException('Item "' . $name . '" not found'); } return $this->item[$name]; } public function register($name, $item, $replace = false) { if (isset($this->item[$name]) and $replace === false) { throw new RuntimeException('Item "' . $name . '" already exists'); } $this->item[$name] = $item; return $this; } public function unregister($name) { if (!isset($this->item[$name])) { throw new RuntimeException('Item "' . $name . '" not found'); } unset($this->item[$name]); } } $container = new Container(); $container->register('ultimate.question', new class(42) { private $value; public function __construct($value) { $this->value = $value; } public function value() { return $this->value; } }); ; if ($container->exists('ultimate.question')) { $answer = $container->get('ultimate.question'); echo "The answer is: ", $answer->value(), "\n"; $container->unregister('ultimate.question'); } else { echo "Come back in 7,500,000 years\n"; }
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Creation of dynamic property Container::$item is deprecated in /in/dheuo on line 29 The answer is: 42

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