Extending The Controller Class in CodeIgniter

前端 未结 5 1558
一向
一向 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:36

    It is possible with Codeigniter 3. Just including the parent file is enough.

    require_once(APPPATH."controllers/MyParentController.php");
    class MyChildController extends MyParentController {
    ...
    

提交回复
热议问题