3v4l.org

run code in 300+ PHP versions simultaneously
<?php class IncrementIterator implements Iterator { protected $start; protected $end; protected $current; public function __construct($start, $end) { $this->start = $start; $this->end = $end; } public function rewind() { $this->current = $this->start; } public function valid() { return $this->current <= $this->end; } public function key() { return $this->current; } public function current() { return $this->current; } public function next() { $this->current++; } } class NestedIterator implements Iterator { protected $iterators = array(); protected $lastIndex = -1; protected $iteration = 0; public function addIterator(Iterator $it) { $this->iterators[] = $it; $this->lastIndex++; } public function rewind() { foreach ($this->iterators as $it) { $it->rewind(); } $this->iteration = 0; } public function valid() { return $this->lastIndex >= 0 && $this->iterators[0]->valid(); } public function key() { return $this->iteration; } public function current() { $return = array(); foreach ($this->iterators as $current) { $return[] = $current; } return $return; } public function next() { for ($i = $this->lastIndex; $i >= 0; $i--) { $this->iterators[$i]->next(); if (!$this->iterators[$i]->valid()) { continue; } for ($j = $i + 1; $j <= $this->lastIndex; $j++) { $this->iterators[$j]->rewind(); } } } } $nestedIterator = new NestedIterator(); $nestedIterator->addIterator(new IncrementIterator(0, 26)); $nestedIterator->addIterator(new IncrementIterator(0, 26)); $nestedIterator->addIterator(new IncrementIterator(0, 26)); $nestedIterator->addIterator(new IncrementIterator(0, 26)); foreach ($nestedIterator as $current) { var_dump($current); }
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Return type of IncrementIterator::current() should either be compatible with Iterator::current(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/C3WHs on line 24 Deprecated: Return type of IncrementIterator::next() should either be compatible with Iterator::next(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/C3WHs on line 28 Deprecated: Return type of IncrementIterator::key() should either be compatible with Iterator::key(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/C3WHs on line 20 Deprecated: Return type of IncrementIterator::valid() should either be compatible with Iterator::valid(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/C3WHs on line 16 Deprecated: Return type of IncrementIterator::rewind() should either be compatible with Iterator::rewind(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/C3WHs on line 12 Deprecated: Return type of NestedIterator::current() should either be compatible with Iterator::current(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/C3WHs on line 59 Deprecated: Return type of NestedIterator::next() should either be compatible with Iterator::next(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/C3WHs on line 69 Deprecated: Return type of NestedIterator::key() should either be compatible with Iterator::key(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/C3WHs on line 55 Deprecated: Return type of NestedIterator::valid() should either be compatible with Iterator::valid(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/C3WHs on line 51 Deprecated: Return type of NestedIterator::rewind() should either be compatible with Iterator::rewind(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/C3WHs on line 43 array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(1) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(2) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(3) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(4) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(5) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(6) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(7) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(8) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(9) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(10) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(11) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(12) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(13) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(14) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(15) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(16) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(17) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(18) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(19) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(20) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(21) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(22) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(23) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(24) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(25) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } } array(4) { [0]=> object(IncrementIterator)#2 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(26) } [1]=> object(IncrementIterator)#3 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [2]=> object(IncrementIterator)#4 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } [3]=> object(IncrementIterator)#5 (3) { ["start":protected]=> int(0) ["end":protected]=> int(26) ["current":protected]=> int(0) } }

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:
54.46 ms | 441 KiB | 8 Q