前端之家收集整理的这篇文章主要介绍了
CI框架中类的自动加载问题分析,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
本文实例讲述了CI框架中类的自动加载问题。分享给大家供大家参考,具体如下:
application/config
配置文件中添加:
1. 第三方库文件加载
PHP;">
// $autoload['packages'] = array(APPPATH.'third_party','/usr/local/shared');
$autoload['packages'] = array();
2. 系统类库加载
PHP;">
// $autoload['libraries'] = array('database','session','xmlrpc');
$autoload['libraries'] = array('database','form_validation','pagination','upload','curl','user_agent');
3. 帮助文件加载
PHP;">
// $autoload['helper'] = array('url','file');
$autoload['helper'] = array('url','cookie','form','captcha','string','html','array','date','file','common');
4. 配置文件加载
PHP;">
// $autoload['config'] = array('config1','config2');
$autoload['config'] = array();
5. 语言文件加载
PHP;">
// $autoload['language'] = array('lang1','lang2');
$autoload['language'] = array();
6. 数据模型的自动加载
PHP;">
//$autoload['model'] = array('model1','model2');
$autoload['model'] = array('');
更多关于CodeIgniter相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》、《》及《PHP常见数据库操作技巧汇总》
希望本文所述对大家基于CodeIgniter框架的PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/18445.html