2

可能重复:
PHP,如何将 func-get-args 值作为参数列表传递给另一个函数?

我在基类中有一个可以接受任意数量参数的方法。此方法需要调用第三方对象的方法,该方法可以使用传递给第一个方法的参数来获取任意数量的参数。

我提到它是一个第三方对象,它被调用以加强被调用方法的签名不能被修改以接受数组或对象的约束。

例子:

<?php
class Example {     

    private $thirdPartyObject = null;

    public function methodOne() {
        $arguments = func_get_args();

        $this->thirdPartyObject = new ThirdPartyObject();
        $this->externalObject->methodName(/* pass on variable number of arguments here */);
    }
}

$exampleObject = new Example();
$exampleObject->methodOne('a', 'b', 'c');


如果我们事先知道传递给的参数数量,Example->methodOne()那么我们可以将相同数量的参数传递给ThirdPartyObject->methodName().

如果我们事先不知道传递给的参数的数量Example->methodOne(),我们可以将这些参数传递给ThirdPartyObject->methodName()吗?

在这种情况下,ThirdPartyObject->methodName()使用一个或多个参数调用,例如:

<?php
$thirdPartyObject = new ThirdPartyObject();
$thirdPartyObject->methodName('a');
$thirdPartyObject->methodName('a', 'b');
$thirdPartyObject->methodName('a', /* ... */, 'N');
4

4 回答 4

3

我认为您正在谈论call_user_func_array ()。但使用它不是一个好习惯。它很慢。

call_user_func_array(array($this->externalObject, "methodName"), $arguments);
于 2012-07-16T15:12:23.197 回答
1

是的,使用call_user_func_array(),像这样:

$this->thirdPartyObject = new ThirdPartyObject();
call_user_func_array( array( $this->externalObject, 'methodName'),  $arguments);
于 2012-07-16T15:13:50.703 回答
0

您可以使用call_user_func_array.

但是,您应该简单地传递参数数组 ( $arguments) 并在您的其他方法中使用它。

于 2012-07-16T15:12:07.250 回答
-1

尝试使用类 Example extends ThirdPartyObject 然后为要传递的变量设置默认值。

于 2012-07-16T15:13:24.030 回答