php – call_user_func_array vs $controller – > $method($params)?

前端之家收集整理的这篇文章主要介绍了php – call_user_func_array vs $controller – > $method($params)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的代码中使用它:
call_user_func_array ( array ($controller,$method ),$this->params );

但我发现下面的代码做了同样的事情:

$controller->$method($this->params);

这两个版本有什么区别吗?

谢谢

亚当拉马丹

他们不一样.

如果$method是showAction而$this-> params是数组(2,’some-slug’),那么第一个调用将等效于:

$controller->showAction(2,'some-slug');

而第二个是:

$controller->showAction(array(2,'some-slug'));

您要使用哪一个取决于系统其余部分的工作方式(特别是您的控制器).我个人可能会选择第一个.

原文链接:https://www.f2er.com/php/130803.html

猜你在找的PHP相关文章