(PHP 4 >= 4.0.5, PHP 5)
call_user_method_array — 调用一个用户方法,同时传递参数数组(已废弃)
call_user_method_array() 函数自 PHP 4.1.0 起已废弃,使用 call_user_func_array() 函数和 array(&$obj, "method_name") 语法代替。
从用户定义的 obj
对象中调用 method_name
所指的方法,同时使用 paramarr
中的参数。