Answers for "functions name dynamically to php class"

PHP
0

php call class method dynamically

//  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)
Posted by: Guest on December-09-2020

Code answers related to "functions name dynamically to php class"

Browse Popular Code Answers by Language