|
求助,controller中无法调入model中的方法
controller中的饿代码如下:
class Bem extends Controller {
function __construct() {
parent::__construct();
$this->load->helper(array('form', 'url'));
$this->load->library('form_validation');
$this->load->library('tank_auth');
$this->load->model('bes');
$this->lang->load('tank_auth');
}
}
model中自己写了一个bes.php文件
代码如下:
class Bes extends Model {
function Bes() {
parent::Model();
}
function gethosts() {
$this->db->order_by('HOSTID', 'asc');
return $this->db->get('TBLHOST');
}
}
不知道为什么不能调用
之前的环境是 php5.1.6 + mysql5.0.xx + CI 1.7.2,一切正常
现在变成了php 5.3.2 + mysql 5.1.xx + CI 1.7.2,就出现这种问题了
请问版本的差异在哪里? |
|