Extending The Controller Class in CodeIgniter

前端 未结 5 1602
一向
一向 2020-11-27 20:23

I have class MY_Controller extends CI_Controller and common logic for big profile section, so I\'va tried to create class Profile extends MY_Controller

5条回答
  •  心在旅途
    2020-11-27 20:34

    After some struggle with version 3 and this issue I decided this was not a bad solution...

    require_once BASEPATH.'core/Controller.php';
    require_once APPPATH.'core/MYCI_Controller.php';
    

    to add this second line where the first exists in the system/core/CodeIgniter.php

    [If it's not too late, I recommend strongly against php and/or CodeIgniter.]

提交回复
热议问题