Fatal error: Class ‘Model’ not found解决方法
更改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();
}
页:
[1]