<?php namespace Controllers{ class A{ public function test() { echo 'meow'; } } } namespace Test{ class B{ private $controller; public function run() { $this->controller = 'A'; $newClassName = "\Controllers\\" . $this->controller; $test = new $newClassName; $test->test(); } } $b = new B(); $b->run(); }
You have javascript disabled. You will not be able to edit any code.