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条)

报告相同问题?

悬赏问题

  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)