dongyong6045 2015-11-18 22:45
浏览 45
已采纳

zf2在动态助手调用中传递多个参数

I'm trying to write a view helper that calls other helpers dynamically, and I am have trouble passing more than one argument. The following scenario will work:

$helperName = "foo";
$args = "apples";

$helperResult = $this->view->$helperName($args);

However, I want to do something like this:

$helperName = "bar";
$args = "apples, bananas, oranges";

$helperResult = $this->view->$helperName($args);

with this:

class bar extends AbstractHelper
{
    public function __invoke($arg1, $arg2, $arg) 
    {
        ...

but it passes "apples, bananas, oranges" to $arg1 and nothing to the other arguments.

I don't want to have to send multiple arguments when I call the helper because different helpers take different numbers of arguments. I don't want to write my helpers to take arguments as an array because code throughout the rest of the project calls the helpers with discreet arguments.

  • 写回答

3条回答 默认 最新

  • duanpa1898 2015-11-19 08:08
    关注

    Your problem is that calling

    $helperName = "bar";
    $args = "apples, bananas, oranges";
    
    $helperResult = $this->view->$helperName($args);
    

    will be interpreted as

    $helperResult = $this->view->bar("apples, bananas, oranges");
    

    so you call the method with only the first param.


    To achieve you expected result look at the php function call_user_func_array. http://php.net/manual/en/function.call-user-func-array.php

    Example:

    $args = array('apple', 'bananas', 'oranges');
    $helperResult = call_user_func_array(array($this->view, $helperName), $args);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog