Manual PHP
Înapoi
Înainte
call_user_func
Description
Object methods may also be invoked statically using this function by passing array( $objectname, $methodname) to the function parameter.
?php class myclass {function say_hello() {print "Hello!\n";}} $classname = "myclass"; call_user_func(array($classname ,'say_hello'));?
Înapoi
Acasã
Înainte
Sus