3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Instantiator { public $dependencies = []; public function instantiate($type) { return $this->instantiateInternal($type, []); } private function instantiateInternal($type, array $stack) { if (in_array($type, $stack)) { throw new Exception(vsprintf('Cycle detected for `%s` as %s', [ $type, print_r($stack, true), ])); } $stack[] = $type; $graph = []; if (isset($this->dependencies[$type])) { foreach ($this->dependencies[$type] as $dependentType) { $graph[$dependentType] = $this->instantiateInternal($dependentType, $stack); } } return $graph; } } $i1 = new Instantiator(); $i1->dependencies = [ 'A' => ['B', 'C'], 'B' => ['D'], 'C' => ['D'], 'D' => ['E'], ]; var_dump($i1->instantiate('A')); $i2 = new Instantiator(); $i2->dependencies = [ 'A' => ['B', 'C'], 'B' => ['D'], 'C' => ['D'], 'D' => ['A'], ]; var_dump($i2->instantiate('A'));
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { ["B"]=> array(1) { ["D"]=> array(1) { ["E"]=> array(0) { } } } ["C"]=> array(1) { ["D"]=> array(1) { ["E"]=> array(0) { } } } } Fatal error: Uncaught Exception: Cycle detected for `A` as Array ( [0] => A [1] => B [2] => D ) in /in/tGMQQ:17 Stack trace: #0 /in/tGMQQ(28): Instantiator->instantiateInternal('A', Array) #1 /in/tGMQQ(28): Instantiator->instantiateInternal('D', Array) #2 /in/tGMQQ(28): Instantiator->instantiateInternal('B', Array) #3 /in/tGMQQ(10): Instantiator->instantiateInternal('A', Array) #4 /in/tGMQQ(55): Instantiator->instantiate('A') #5 {main} thrown in /in/tGMQQ on line 17
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.46 ms | 402 KiB | 8 Q