在Codeigniter控制器上的函数B内调用函数A.

时间:2013-10-31 08:15:15

标签: php codeigniter

我有一个约5-6个功能的控制器。

class Register extends CI_Controller {
public function index()
{
  //  some code written
}    
public function Add()
{
  //  Some code written
}
public function xyz()
{
  //  Some code written
  $this->abc();
}
public function abc()
{
  // Some code written
}
}

xyz函数中,我想调用abc函数。 这可能吗 ?如果是这样,怎么称呼它?

1 个答案:

答案 0 :(得分:32)

有可能,您编写的代码是正确的

public function xyz()
{
  //  Some code written
  $this->abc();     //This will call abc()
}

编辑:

你有没有正确地试过这个?

class Register extends CI_Controller {
    public function xyz()
    {
      $this->abc();
    }
    public function abc()
    {
      echo "I am running!!!";
    }
}

并致电register/xyz