(PHP3 >= 3.0.3, PHP4 )
mixed call_user_func (string function_name [, mixed parameter [, mixed ...]])
mixed call_user_func
Call a user defined function given by the function_name parameter. Take the following:
function barber ($type) { print "You wanted a $type haircut, no problem"; } call_user_func ('barber', "mushroom"); call_user_func ('barber', "shave");