用户
 找回密码
 入住 CI 中国社区
搜索
查看: 4574|回复: 0
收起左侧

[数据库] Fatal error: Class ‘Model’ not found解决方法

[复制链接]
发表于 2011-6-21 09:35:41 | 显示全部楼层 |阅读模式
更改

class Category_model extends Model {
....................
}



class Category_model extends CI_Model {
....................
}

function _construct()
{
       // Call the Model constructor
       parent::Model();
}

更改为

function _construct()
{
       // Call the Model constructor
       parent::_construct();
}

本版积分规则