具有未知数量的参数的方法可以使用未知数量的参数调用另一个方法吗?

时间:2012-07-16 15:09:06

标签: php

  

可能重复:
  PHP, how to pass func-get-args values to another function as list of arguments?

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

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

示例:

<?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 个答案:

答案 0 :(得分:3)

我想你正在谈论call_user_func_array()。但使用它并不是一个好习惯。这很慢。

call_user_func_array(array($this->externalObject, "methodName"), $arguments);

答案 1 :(得分:1)

是的,请使用call_user_func_array(),如下所示:

$this->thirdPartyObject = new ThirdPartyObject();
call_user_func_array( array( $this->externalObject, 'methodName'),  $arguments);

答案 2 :(得分:0)

您可以使用 call_user_func_array

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

答案 3 :(得分:-1)

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