我有:
public $staticRoutes = array(
'dog-toys' => 'Index',
) ;
if(array_key_exists($controller, $this->staticRoutes))
{
$controller = new $controller ;
}
新的 $controller 正在变成“狗玩具”,这不是我想要的。
我怎样才能改变我所拥有的$controller = new Index ;
呢?