$this->$fn是一个函数名,
return $this->$fn($command)返回的是$fn($commmand)方法的返回值。例如
class test
{
  function one($command)
  {
    return $command+1;
  }  function two($command)
  {
    return $command+2;
  }  function GetAuth ($command)
  {
        $this->cfgUserAuth = "one";
        $fn = $this->cfgUserAuth;
        return $this->$fn($command);
  }}$obj = new Test();
echo $obj->GetAuth(3);//将输出:4