Hi!
I have folowing function which they are a member in a class.
function foo(){ something }
function zoo(){ something else }
and i have a array such:
$test = array(1=>foo,2=zoo);
and i want to call the fuction foo() and zoo something like;
$object->$test[1]();
Try:
{$object->$test[1]}();
-- ---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
PHP|Architect: A magazine for PHP Professionals – www.phparch.com
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php