我在我的代码中使用它:
call_user_func_array ( array ($controller,$method ),$this->params );
但我发现下面的代码做了同样的事情:
$controller->$method($this->params);
这两个版本有什么区别吗?
谢谢
亚当拉马丹
他们不一样.
原文链接:https://www.f2er.com/php/130803.html如果$method是showAction而$this-> params是数组(2,’some-slug’),那么第一个调用将等效于:
$controller->showAction(2,'some-slug');
而第二个是:
$controller->showAction(array(2,'some-slug'));
您要使用哪一个取决于系统其余部分的工作方式(特别是您的控制器).我个人可能会选择第一个.