如何在同一个shell上为另一个方法调用dispatchShell?

时间:2015-01-10 05:58:23

标签: shell cakephp

我有一个蛋糕壳,说DemoShell。并且,从方法'method1',我想创建另一个执行DemoShell的'method2'的进程。怎么办?

class DemoShell extends AppShell {
  // some code
  private function method1() {
     // some code
     $success = $this->dispatchShell('Demo', 'method2', $params);
     // some more code
  }

  private function method2() {
      // some code to do something and return boolean value
  }
}

我尝试了这个,但是没有调用method2。

0 个答案:

没有答案