0

我对此进行了研究,找不到我想要的东西。尝试过 ReflectionClass 但这对我不起作用。

我有一个功能类。进入函数的变量数量是动态的。

例子:

包含类:

class Home {
  function test($var1, $var2, $var3){
    // do stuff here
  }
}

// this class is included based on url params, i.e. example.com/home/test/1/2/3
// where home is class, test is function and 1 2 3 are variables

$variables = array('1','2','3'); // static for this example, but array can have any number of elements to it.

$foo = new Home();
$foo->test($variables);

call_user_func_array('test', $variables);

所以我想要实现的是获取变量数组并将它们发送到函数测试,就像代码示例中一样,我可以在其中列出每个变量。

下面的这个例子做了我想做的事情,但是我如何将它应用到类/mvc 框架中呢?

$colors = array('test','maroon','blue','green');
call_user_func_array('setLineColor', $colors);

function setLinecolor($var1, $var2, $var3, $var4){
  echo $var1;
  echo $var2;
}

对此有什么想法吗?

4

2 回答 2

2

为对象使用适当的回调

$foo = new Home();
call_user_func_array( array( $foo, 'test'), $variables);

这将调用对象test()上的$foo函数。

于 2012-08-16T02:18:48.027 回答
0

您是否考虑过发送关联数组,然后在函数中使用extract with ?

喜欢:

// using 
$variables = array('var1'=>'1', 'var2'=>'2', 'var3'=>'3');
// instead of
$variables = array('1','2','3');

并且,功能:

function test($variables)
{
extract($variables);
echo $var1;
echo $var2;
}
于 2012-08-16T02:28:00.193 回答