首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

codeigniter 如何载入model类

2012-02-28 
codeigniter 怎么载入model类?我必须这么写class Indexwelcome extends Controller {function __construct

codeigniter 怎么载入model类?
我必须这么写
class Indexwelcome extends Controller {
function __construct()
{
parent::Controller();
$this->load->model('Mtest','',TRUE);

}
但是我看到别人这么写
$this->load->model('Mtest');

如果我后面不加,'',TURE,就会报错,请问为什么啊


[解决办法]
不会吧?一直都是这么用的!没有什么错误啊!
你的Model是怎么声明的不?
class newModel extends Model {
function newModel(){
parent::Model();
}
}

热点排行