suppose I need to use a variable's name as the function name of call_user_func_array()Docs
eg.
$j = new SomeObject();
and I'm trying to call $j->funcme();
call_user_func_array('$j->funcme()',$args);
returns the not found or invalid function name error
what should I do to rectify this?
call_user_func_array? The answer to your question is right in the first example.