class Hoge {
 function __construct($mode) {
  $this->{$mode}();
 }

}
この{$mode}を__constructに渡した任意の文字列に置き換えて
そのメンバーmethodを実行したいのですが、可能でしょうか?
やりかたをおしえていただけますでしょうか?