我想从这样的网址:example.com/?module=index&controller=index&action=hello 通过 $_GET[] 获取值,然后创建命名空间路径,如 application\modules\index\controllers\IndexController 然后
use application\modules\index\controllers\IndexController as IndexController;
$IndexController = new IndexController;
$IndexController->hello();
例如,但是当我尝试以随机方式创建路径时-> 错误和.. 我不知道该怎么做,请帮忙!