2

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

それらのどれもエコーされません...

4

2 に答える 2