开发者

codeigniter error pages

开发者 https://www.devze.com 2023-02-04 05:06 出处:网络
How to ac开发者_如何学Pythoncess helpers/libraries in error pages of codeigniter ? For example error_general ?Use this function:

How to ac开发者_如何学Pythoncess helpers/libraries in error pages of codeigniter ? For example error_general ?


Use this function:

$CI &= get_instance();
$CI->load->library('foo');


Thanks. This worked for me. However, the statement should actually say this,

$CI = & get_instance();
$CI->load->library('foo');
0

精彩评论

暂无评论...
验证码 换一张
取 消