Error Class Controller not found in CodeIgniter

前端 未结 3 754
离开以前
离开以前 2021-01-21 09:14

Hello, I am getting Controller not found error in CodeIgniter. This is my Controller code



        
3条回答
  •  执念已碎
    2021-01-21 09:44

    As of CodeIgniter 2.x CI_ prefix is added to all core classes. Check the Change Log.

    Added CI_ Prefix to all core classes.

    For CodeIgniter 2.x

    load->view('index_view');
        }
    
        function hello()
        {
            $this->load->view('hello_view');
        }
    
    }
    

    For CodeIgniter 1.x

    load->view('index_view');
        }
    
        function hello()
        {
            $this->load->view('hello_view');
        }
    
    }
    

    Hope this helps you. Thanks!!

提交回复
热议问题