21

我有一个控制器,它有大约 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函数。这可能吗 ?如果是这样,怎么称呼它?

4

1 回答 1

42

有可能,你写的代码是正确的

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

于 2013-10-31T08:23:18.363 回答