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