PHP Handleiding
Terug
Volgende
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'));?
Terug
Begin
Volgende
Omhoog