CI里如何在自定义类调用系统类
2020-1-10 dingshangchao php开发
$CI = &get_instance();
用这句就可以再自定义类中使用系统的类
例如
$CI->db->insert();在自定义类库中使用config配置项
通常情况下,Controller 中的方法可以通过
$this->config->item('item_name')
的方式来加载配置文件中的值
但是如果不继承 CI_Controller 这个方式就不能用了同理可以通过创建来自 CI_Controller 的引用来实现:
$CI =& get_instance(); $item_value = $CI->config->item('item_name');
« 由ppt制作mp4高清视频
|
前端模块化»