3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Controller { public function __construct(B $b) { $this->b = $b; } } class B { public function __construct(C $c) { $this->c = $c; } } class C { public function __construct(Guzzle $guzzle) { $this->guzzle = $guzzle; } } class Guzzle { public function __construct() { } } $getReflectedConstructorParams = function($className) { return (new ReflectionClass($className))->getConstructor()->getParameters(); }; $className = 'Controller'; $graph = []; // I hate recursion, there's much better ways while (true) { $params = $getReflectedConstructorParams($className); // Guard clause if (!isset($params[0])) { // We'll have reached the Guzzle object here, the last one in the chain $prevObj = null; foreach ($graph as $obj) { // This will only happen once if ($prevObj === null) { $prevObj = new $obj; continue; } $prevObj = new $obj($prevObj); var_dump($prevObj); die; } var_dump($prevObj); break; } $className = $params[0]->getClass()->getName(); $graph[] = $className; } var_dump($graph);

preferences:
49.43 ms | 402 KiB | 5 Q