我使用 CodeIgniter 的小项目(只是为了熟悉它。它实际上就像他们教程的示例)它停止工作,即使 index.php 中的设置为开发,也没有给我任何输出或错误...
所以我尝试用一些回声自己调试它
我发现这里停止记录
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()';
}
他们都没有回声...