• <legend id='FMjdc'><style id='FMjdc'><dir id='FMjdc'><q id='FMjdc'></q></dir></style></legend>

        • <bdo id='FMjdc'></bdo><ul id='FMjdc'></ul>

        <small id='FMjdc'></small><noframes id='FMjdc'>

        <tfoot id='FMjdc'></tfoot>
      1. <i id='FMjdc'><tr id='FMjdc'><dt id='FMjdc'><q id='FMjdc'><span id='FMjdc'><b id='FMjdc'><form id='FMjdc'><ins id='FMjdc'></ins><ul id='FMjdc'></ul><sub id='FMjdc'></sub></form><legend id='FMjdc'></legend><bdo id='FMjdc'><pre id='FMjdc'><center id='FMjdc'></center></pre></bdo></b><th id='FMjdc'></th></span></q></dt></tr></i><div id='FMjdc'><tfoot id='FMjdc'></tfoot><dl id='FMjdc'><fieldset id='FMjdc'></fieldset></dl></div>

        在 CodeIgniter 中找不到错误类控制器

        时间:2023-10-11

          <bdo id='oTW3W'></bdo><ul id='oTW3W'></ul>

          <small id='oTW3W'></small><noframes id='oTW3W'>

          <legend id='oTW3W'><style id='oTW3W'><dir id='oTW3W'><q id='oTW3W'></q></dir></style></legend>

          1. <i id='oTW3W'><tr id='oTW3W'><dt id='oTW3W'><q id='oTW3W'><span id='oTW3W'><b id='oTW3W'><form id='oTW3W'><ins id='oTW3W'></ins><ul id='oTW3W'></ul><sub id='oTW3W'></sub></form><legend id='oTW3W'></legend><bdo id='oTW3W'><pre id='oTW3W'><center id='oTW3W'></center></pre></bdo></b><th id='oTW3W'></th></span></q></dt></tr></i><div id='oTW3W'><tfoot id='oTW3W'></tfoot><dl id='oTW3W'><fieldset id='oTW3W'></fieldset></dl></div>

              <tbody id='oTW3W'></tbody>
                • <tfoot id='oTW3W'></tfoot>

                  本文介绍了在 CodeIgniter 中找不到错误类控制器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  您好,我在 CodeIgniter 中遇到 Controller not found 错误.这是我的控制器代码

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

                  <?php
                  
                  class HelloWorld extends Controller
                  {
                  
                      function HelloWorld()
                      {
                          parent::Controller();
                      }
                  
                      function index()
                      {
                          $this->load->view('index_view');
                      }
                  
                      function hello()
                      {
                          $this->load->view('hello_view');
                      }
                  
                  }
                  ?>
                  

                  这是视图代码:

                  你好,很高兴见到你!

                  执行时出现此错误:

                  致命错误:在第 2 行的 D:wampwwwCodeIgniter_2.0.2applicationcontrollershelloworld.php 中找不到 Class 'Controller'

                  谁能告诉我为什么会出现这个错误?

                  Can anyone tell me why I get this error?

                  推荐答案

                  从 CodeIgniter 2.x 开始,CI_ 前缀被添加到所有核心类中.检查更改日志.

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

                  为所有核心类添加了 CI_ 前缀.

                  对于 CodeIgniter 2.x

                  For CodeIgniter 2.x

                  <?php
                  
                  if (!defined('BASEPATH'))
                      exit('No direct script access allowed');
                  
                  class HelloWorld extends CI_Controller
                  {
                  
                      function __construct()
                      {
                          parent::__construct();
                      }
                  
                      function index()
                      {
                          $this->load->view('index_view');
                      }
                  
                      function hello()
                      {
                          $this->load->view('hello_view');
                      }
                  
                  }
                  

                  对于 CodeIgniter 1.x

                  For CodeIgniter 1.x

                  <?php
                  
                  if (!defined('BASEPATH'))
                      exit('No direct script access allowed');
                  
                  class HelloWorld extends Controller
                  {
                  
                      function HelloWorld()
                      {
                          parent::Controller();
                      }
                  
                      function index()
                      {
                          $this->load->view('index_view');
                      }
                  
                      function hello()
                      {
                          $this->load->view('hello_view');
                      }
                  
                  }
                  

                  希望对你有帮助.谢谢!!

                  Hope this helps you. Thanks!!

                  这篇关于在 CodeIgniter 中找不到错误类控制器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:类 AppHttpControllersPostController 不存在 下一篇:OpenCart 将变量从控制器传递给树枝

                  相关文章

                • <tfoot id='zpq6P'></tfoot>

                  <small id='zpq6P'></small><noframes id='zpq6P'>

                    <bdo id='zpq6P'></bdo><ul id='zpq6P'></ul>

                  <i id='zpq6P'><tr id='zpq6P'><dt id='zpq6P'><q id='zpq6P'><span id='zpq6P'><b id='zpq6P'><form id='zpq6P'><ins id='zpq6P'></ins><ul id='zpq6P'></ul><sub id='zpq6P'></sub></form><legend id='zpq6P'></legend><bdo id='zpq6P'><pre id='zpq6P'><center id='zpq6P'></center></pre></bdo></b><th id='zpq6P'></th></span></q></dt></tr></i><div id='zpq6P'><tfoot id='zpq6P'></tfoot><dl id='zpq6P'><fieldset id='zpq6P'></fieldset></dl></div>

                    <legend id='zpq6P'><style id='zpq6P'><dir id='zpq6P'><q id='zpq6P'></q></dir></style></legend>