|
本帖最后由 永恒forever 于 2012-9-18 17:02 编辑
我有一个表 news,表结构如下:
SQL复制代码 CREATE TABLE `news` (`news_id` INT(11) NOT NULL AUTO_INCREMENT,`news_title` VARCHAR(100) NOT NULL,`news_content` TEXT NOT NULL,`news_category_id` INT(11) NOT NULL,`news_user_id` INT(11) NOT NULL,`news_created_time` INT(10) NOT NULL,PRIMARY KEY (`news_id`))COLLATE='utf8_general_ci'ENGINE=InnoDBAUTO_INCREMENT=2; 复制代码
Model 代码为:
PHP复制代码 public function getNews ($id = FALSE) { if ($id === FALSE) {
$this->db->select('news_title,news_content,news_created_time');
$query = $this->db->get('news');
return $query->result_array();
}
// $this->db->select('news_title'); //只选这个字段,页面正常
// $this->db->select('news_content'); //只选这个字段,页面也正常
$this->db->select('news_content,news_title'); //但是这两个字段都选,就出现乱码,并且刷新几次,可能有一次会正常
$query = $this->db->get_where('news', array('news_id' => $id));
return $query->row_array();
} 复制代码
控制器相关代码为:
PHP复制代码 public function test ($id) { $query = $this->news_model->getNews($id);
var_dump($query);
} 复制代码
|
|