How can I dynamically invoke a class method in PHP? The class method is not static. It appears that
call_user_func(...)
only works with st
call_user_func(array($object, 'methodName'));
For more details, see the php callback documentation.