Sorry my fault. It's working of course.

Am Sun, 20 Mar 2005 18:47:20 +0100 schrieb Rainer Hahnekamp:
> Hello everybody,
> 
> I want to write a method in version 4 that executes a method of an object.
> As parameter the classname and the methodname is passed:
> 
> function executeMethod($classname, $methodname) {
>       $object = new $classname();
>       $object->$methodname();
> }
> 
> This does not work. What am I doing wrong?
> 
> Greetings,
> -Rainer Hahnekamp

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to