从该类中调用函数 - php

时间:2012-06-18 22:03:46

标签: function cakephp

我在类ceff()中有一个名为wsGO()的函数。我希望能够从类ceff中运行该函数。我用了这段代码:

class ceff{

    $ceff_instance = new ceff($this);
    $ceff_instance = wsGO();

    public function wsGO(){
        ....
    }
}

然而这不起作用。有什么想法吗?

1 个答案:

答案 0 :(得分:2)

在PHP中,您只能使用常量初始化属性 - NOT函数或构造函数调用。但您可以在构造函数中执行此操作,例如:

class ceff{

   public $ceff_instance;

   public function __construct() {
      $this->ceff_instance = $this->wsGO();
   }

   public function wsGO(){
      ....
   }
}