欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

CI框架中类的自动加载问题分析

程序员文章站 2024-03-04 19:57:12
本文实例讲述了ci框架中类的自动加载问题。分享给大家供大家参考,具体如下: application/config 配置文件中添加: | 1. packages |...

本文实例讲述了ci框架中类的自动加载问题。分享给大家供大家参考,具体如下:

application/config

配置文件中添加:

| 1. packages
| 2. libraries
| 3. helper files
| 4. custom config files
| 5. language files
| 6. models

1. 第三方库文件加载

// $autoload['packages'] = array(apppath.'third_party', '/usr/local/shared');
$autoload['packages'] = array();

2. 系统类库加载

// $autoload['libraries'] = array('database', 'session', 'xmlrpc');
$autoload['libraries'] = array('database','session','form_validation','pagination','upload','curl','user_agent');

3. 帮助文件加载

// $autoload['helper'] = array('url', 'file');
$autoload['helper'] = array('url','cookie','form','captcha','string','html','array','date','file','common');

4. 配置文件加载

// $autoload['config'] = array('config1', 'config2');
$autoload['config'] = array();

5. 语言文件加载

// $autoload['language'] = array('lang1', 'lang2');
$autoload['language'] = array();

6. 数据模型的自动加载

//$autoload['model'] = array('model1', 'model2');
$autoload['model'] = array('');

更多关于codeigniter相关内容感兴趣的读者可查看本站专题:《codeigniter入门教程》、《ci(codeigniter)框架进阶教程》、《php优秀开发框架总结》、《thinkphp入门教程》、《thinkphp常用方法总结》、《zend framework框架入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家基于codeigniter框架的php程序设计有所帮助。