<?php class name1Controller{ function __construct() { echo "new name1!\n"; } } class name2Controller{ function __construct() { echo "new name2!\n"; } } class SuperAdminController { function Action($controller, $wanted = '') { $c = "{$controller}Controller"; $o = new $c(); } } $s = new SuperAdminController(); $s->Action('name1');
You have javascript disabled. You will not be able to edit any code.