调用Controller函数codeigniter

时间:2014-02-14 13:31:43

标签: php codeigniter

我的问题是调用另一个函数。我有两个控制器。 abc和xyz控制器。我想在xyz控制器中调用abc函数。我正在尝试这个..

class ABC extends CI_Controller{
   function callme(){
       return "try";
   }
   function anotherfunc(){
       return "try";
   }
}

class CDS extends CI_Controller{
    function callme(){
        return "try";
    }
    function anotherfunc(){
        return "try";
    }
}

class XYZ extends CI_Controller{
   function callme(){
       $user = $this->abc->callme();
       $user2 = $this->cds->callme();
   }
}                            

但它不起作用。

0 个答案:

没有答案