2011年6月16日 星期四

[PHP] call_user_func_array () 呼叫function and Class

call_user_func_array() 神奇的PHP 內建函數.


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


// Call the foobar() function with 2 arguments
call_user_func_array("foobar", array("one", "two"));

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

結果:
foobar got one and two
foo::bar got three and four

【下列文章您可能也有興趣】

沒有留言: