3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Entity { protected $_properties = []; public function &__get($property) { $value = null; if (isset($this->_properties[$property])) { $value =& $this->_properties[$property]; } return $value; } public function __set($property, $value) { $this->_properties[$property] = $value; } } class CustomIterator extends IteratorIterator { public $callback; public function __construct($items) { $this->callback = function ($a) { $a->foo .= ' world'; return $a; }; parent::__construct($items); } public function current() { $c = $this->callback; return $c(parent::current()); } } $entity = new Entity(); $entity->foo = 'hello'; $it = new CustomIterator(new ArrayIterator([$entity])); $it->rewind(); var_dump($it->current());
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Return type of CustomIterator::current() should either be compatible with IteratorIterator::current(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/S3fTZ on line 37 object(Entity)#1 (1) { ["_properties":protected]=> array(1) { ["foo"]=> string(11) "hello world" } }

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:
56.5 ms | 402 KiB | 8 Q