Re: [PHP] using a variable to a function call

2002-03-08 Thread Matt Williams
On Thursday 07 March 2002 19:21, Lars Torben Wilson wrote: > // The direct way: > $foo->{$test . '_foo'}(); Thanks Lars This was what I was looking for, just couldn't remember the syntax -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] using a variable to a function call

2002-03-07 Thread Lars Torben Wilson
On Thu, 2002-03-07 at 06:25, Matt Williams wrote: > Hi all > > I get a variable that is set be a select box on a page. > I want to use this variable to call a function within a class that is based > on it's name. > > so if $var = "me" > > I want to call $class->me_function(); > > or if > >

Re: [PHP] using a variable to a function call

2002-03-07 Thread Edward van Bilderbeek - Bean IT
isn't it the easiest way to do something like this: class test { function do ($var) { if ($var=='you') { $this->you_function(); } else { $this->me_function(); } } function you_function() { ... } function me_func