CodeIgniter:应用程序不起作用,不会记录错误

时间:2013-05-08 09:10:07

标签: php codeigniter error-reporting

我与CodeIgniter的小项目(只是为了熟悉它。它实际上就像他们的教程的例子)它停止工作,即使在index.php中设置为开发,也没有输出或错误... < / p>

所以我尝试用一​​些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()';
}

他们都没有回应......

2 个答案:

答案 0 :(得分:1)

找到1

$this->db->get('news'{});  //    try to del {}

第一个参数是表名

第二个和第三个参数使您可以设置限制和偏移子句

答案 1 :(得分:0)

原始codeigniter教程有这个:

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();
}