Example: I have an variable like \[code\]$method = "doSomething";\[/code\]Assume that I have an $myObject which knows a nonstatic, public method doSomething()Could I then just call that method by doing this?\[code\]$myObject->$method();\[/code\]Or is there another / better way?