use app\controllers\SiteController;
$s = 'SiteController';
$model = new $s();
$s->index();
想把类名用变量代替 应该怎么写呢?
上面写法提醒没有这个类 Class 'SiteController' not found
不用use,尝试以下写法:
你不应该是使用$model->index();
来调用么
use app\controllers\SiteController;
$s = 'SiteController';
$model = new $s();
$s->index();
想把类名用变量代替 应该怎么写呢?
上面写法提醒没有这个类 Class 'SiteController' not found
不用use,尝试以下写法:
你不应该是使用$model->index();
来调用么