您的位置:首页 > 编程语言 > PHP开发

PHP call_user_func_array()函数

2015-12-14 13:59 661 查看

定义

call_user_func_array — 调用回调函数,并把一个数组参数作为回调函数的参数;

语法:

call_user_func_array(callable callback,arraycallback ,array param_arr);

第一个参数:作为回调函数(callback)调用,通常是函数名;

第二个参数:把参数数组作(param_arr)为回调函数的的参数传入;

实例:

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_user_func_array("foobar",array("one","two"));

$foo=new foo;
call_user_func_array(array($foo,"bar"),array("three","four"));


output:

foobar got one and two
foo::bar got three and four
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: