将属性传递给回调函数

时间:2018-03-07 03:01:53

标签: php function callback

有没有办法可以将属性传递给名为

的回调函数
// An example callback method

class MyClass {
    static function myCallbackMethod() {
        echo 'Hello World!';
    }
}

call_user_func(array('MyClass', 'myCallbackMethod'));

如果函数myCallbackMethod接受某些属性怎么办?如何使用调用函数并传递属性值?

参考:http://php.net/manual/en/language.types.callable.php#example-75

1 个答案:

答案 0 :(得分:0)

您可以尝试这种方式,call_user_func_array()

class foo {
    function bar($arg, $arg2) {
        echo __METHOD__, " got $arg and $arg2\n";
    }
}

// Call the $foo->bar() method with 2 arguments
$foo = new foo;
call_user_func_array(array($foo, "bar"), array("three", "four"));

output :- foo::bar got three and four