doushi1473 2013-06-11 16:55
浏览 46
已采纳

CodeIgniter将参数传递给CORE MY_Controller中的函数

I hope that this is possible

Can I pass parameters to functions in CORE/MY_Controller?

I am developing a application that has three controllers and most of the functions are the same so I want to code functions ones and use them again in their respectable controllers when need.

function like search_User_Name() will be in both of the controllers, it will be cool if i can get to code it once and reuse it. the problems that i am facing at the moment are

  1. The MY_Controller.php is not in the same folders as other controllers
  2. The search_User_Name() function has to receive parameters like search_User_Name($var1, $var2)

I have a controller in the core folder as MY_Controller

class MY_Controller extends CI_Controller{

    public function __construct() {
             parent::__construct();
    }

    public function Testing($var){
     $function_var= $var;
     return $function_var;
   }
}

and i have a controller in the controller folder as Sub_Controlller

class Sub_Controller extends MY_Controller{
    public function __construct() {
        parent::__construct();
    }

    public function Show(){
        echo($this->Testing());
    }
}

on the view i have

echo anchor('Sub_Controller/Show/Parameter','Pass a parameter');

according to my understanding i was spouse to get the word "parameter" on the screen. can any help?

  • 写回答

1条回答 默认 最新

  • dsbqfrr098575666 2013-06-11 17:05
    关注

    It will work fine, but you still need to pass in the arguments:

    class Sub_Controller extends MY_Controller {
        public function Show($arg = null) {
            echo($this->Testing($arg));
        }
    }
    

    Alternatively you can read the URI segment from the base function, but then you have less control:

    class MY_Controller extends CI_Controller {
        public function Testing() {
            $function_var = $this->uri->segment(2);
            return $function_var;
       }
    }
    class Sub_Controller extends MY_Controller {
        public function Show() {
            echo($this->Testing()); // prints the argument in the URL
        }
    }
    

    Better to do it the first way.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作