这是modules
库中的文件夹结构
用户->控制器->Users.php
用户->配置->autoload.php
欢迎->控制器->Welcome.php
自动加载.php
$autoload = array(
'helper' => array('url', 'form'),
'libraries' => array('session')
);
Welcome.php (位于 modules/welcome/Welcome.php)
class Welcome extends MX_Controller {
public function index()
{
//load module
$this->load->module(array('users'));
}
}
我会收到以下错误:
Unable to locate the specified class: Session.php
注意:
url
并且form
库已正确加载