CodeIgniter:应用程序不起作用并且不会记录错误
Posted
技术标签:
【中文标题】CodeIgniter:应用程序不起作用并且不会记录错误【英文标题】:CodeIgniter: Application Doesn't work and wont log errors 【发布时间】:2013-05-02 10:47:55 【问题描述】:我使用 CodeIgniter 的小项目(只是为了熟悉它。实际上就像他们教程的示例)它停止工作,即使 index.php 中设置为开发,也没有给我任何输出或错误...
所以我尝试用一些 echo 自己调试它
我发现这里停止记录
class News extends CI_Controller
public function __construct()
parent::__construct();
echo 'This is echoed';
$this->load->model('news_model');
echo 'This wont be echoed';
/*(class continues)*/
我的 news_model.php 看起来像这样:
<?php
class News_model extends CI_Model
public function __construct()
$this->load->database();
public function get_news($slug = FALSE)
if ($slug === FALSE)
$query = $this->db->get('news');
return $query->result_array();
$query = $this->db->get_where('news', array('slug' => $slug));
return $query->row_array();
public function set_news()
$this->load->helper('url');
$slug = url_title($this->input->post('title'), 'dash', TRUE);
$data = array(
'title' => $this->input->post('title'),
'slug' => $slug,
'text' => $this->input->post('text')
);
return $this->db->insert('news', $data);
知道我做错了什么吗?
-编辑-
public function __construct()
echo '__construct()';
$this->load->database();
echo 'after__construct()';
没有一个被回显...
【问题讨论】:
News_model 中的构造是否运行?你设置好你的数据库参数了吗? 它没有...我在问题中添加了我测试的内容 【参考方案1】:找到 1 个
$this->db->get('news'); // try to del
第一个参数是表名
第二个和第三个参数可以设置limit和offset子句
【讨论】:
@Toni Michel Caubet ,尝试删除 【参考方案2】:原始的codeignitor教程有这个:
public function get_news($slug = FALSE)
if ($slug === FALSE)
$query = $this->db->get('news'); // <----------------------------
return $query->result_array();
$query = $this->db->get_where('news', array('slug' => $slug));
return $query->row_array();
【讨论】:
另外,如果你使用 PHP 编辑器,这个错误会被高亮显示。以上是关于CodeIgniter:应用程序不起作用并且不会记录错误的主要内容,如果未能解决你的问题,请参考以下文章
codeigniter form_validation 不起作用并且 $this->form_validation->run() 不返回任何内容