how to require_once in codeigniter

前端 未结 4 736
醉梦人生
醉梦人生 2020-12-09 03:56

I am trying to extend a library in codeigniter. The only way to do so seems to include the original library using require_once then load the extended library us

4条回答
  •  一生所求
    2020-12-09 04:36

    In a real server, you should use library's UPPERCASE name. like this:

    require_once(APPPATH.'libraries/Ion_auth.php');
    

提交回复
热议问题