How do I dynamically invoke a class method in PHP? [duplicate]
It works both ways – you need to use the right syntax // Non static call call_user_func( array( $obj, ‘method’ ) ); // Static calls call_user_func( array( ‘ClassName’, ‘method’ ) ); call_user_func( ‘ClassName::method’ ); // (As of PHP 5.2.3)