我使用的是PHP 5.3(
Windows 7).
func A call func B. func2($a,$b,$c,) ... the number of parameters can be dynamic.
call_user_func(“func2”,$x) – 使用的语法是什么:带参数的call_user函数,参数个数未知.
谢谢 :)
我认为你要找的是这个
http://www.php.net/call_user_func_array
原文链接:https://www.f2er.com/php/135544.htmlcall_user_func_array('func2',array($a,$c));