PHP call_user_func_array()函数

来源:互联网 发布:all in one seo pack 编辑:程序博客网 时间:2024/06/05 04:08

定义

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

语法:

call_user_func_array(callable callback,arrayparam_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 twofoo::bar got three and four
0 0
原创粉丝点击