Podręcznik PHP Poprzedni Następny 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'));? Poprzedni Spis treści Następny Początek rozdziału