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 $it) { $return[] = $it->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/noLO6 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/noLO6 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/noLO6 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/noLO6 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/noLO6 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/noLO6 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/noLO6 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/noLO6 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/noLO6 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/noLO6 on line 43 array(4) { [0]=> int(0) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(1) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(2) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(3) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(4) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(5) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(6) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(7) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(8) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(9) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(10) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(11) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(12) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(13) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(14) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(15) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(16) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(17) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(18) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(19) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(20) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(21) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(22) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(23) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(24) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(25) [1]=> int(0) [2]=> int(0) [3]=> int(0) } array(4) { [0]=> int(26) [1]=> int(0) [2]=> int(0) [3]=> 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:
42.59 ms | 413 KiB | 8 Q