有没有办法可以将属性传递给名为
的回调函数// 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
答案 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