On Sat, 16 Aug 2003 07:58:27 +0200, you wrote:

>$test = array(1=>foo,2=zoo);
>
>and i want to call the fuction foo() and zoo something like;
>
>$object->$test[1]();

I've never used this myself, but this should work:

call_user_func(&$object, $test[1]);

See:

http://www.php.net/manual/en/function.call-user-func.php

HTH

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

Reply via email to