本文主要是介绍PHP call_user_func_array()函数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
定义
call_user_func_array — 调用回调函数,并把一个数组参数作为回调函数的参数;
语法:
call_user_func_array(callable callback,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
这篇关于PHP call_user_func_array()函数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!