为什么这个构造函数无法在 Code Igniter 中加载?

发布于 2024-10-20 21:25:44 字数 553 浏览 2 评论 0原文

<?php
class Blog extends CI_Controller {
    function Blog() {
        parent::CI_Controller();
    }
}

我正在尝试在 Code Igniter 中为我的类“博客”创建一个构造函数,上面的代码给了我一个致命错误:

致命错误:调用未定义的方法 CI_Controller::CI_Controller() 中 C:\xampp\htdocs\mysites\blog\application\controllers\blog.php 第 5 行

我该如何解决这个问题?

(我正在官方代码点火器网站上浏览在线视频教程,但我认为该教程已经过时了大约 2 年,因为当我完全按照视频中所示操作时,有些东西无法正常工作,这是一个其中 - 视频链接位于此处 - 我在教程结束时大约 8 分钟遇到了这个问题)

<?php
class Blog extends CI_Controller {
    function Blog() {
        parent::CI_Controller();
    }
}

I'm trying to create a constructor in Code Igniter for my class 'Blog' and the above code is giving me a fatal error:

Fatal error: Call to undefined method
CI_Controller::CI_Controller() in
C:\xampp\htdocs\mysites\blog\application\controllers\blog.php
on line 5

How do I fix this?

(I'm going through a online video tutorial on the official code igniter website but I think the tutorial is about 2 years out of date as some of the things are not working when I follow them exactly as shown in the video, this being one of them - the link to the video is here - I encounter this problem towards the end of the tutorial about 8 minutes in)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

歌入人心 2024-10-27 21:25:44

应该是这样...

<?php
class Blog extends CI_Controller {

    function __construct() {
        parent::__construct();
    }

}

您正在经历的教程可能基于 1.7.2,它具有 php4 的核心,没有使用 php5 __construct() 构建类构造函数的方法。 Codeigniter 2.0.0 有一个 php5 核心并使用它。

It should be this...

<?php
class Blog extends CI_Controller {

    function __construct() {
        parent::__construct();
    }

}

The tutorial you are probably going through is based on 1.7.2 which had a core of php4 which did not use the php5 __construct() method of building Class constructors. Codeigniter 2.0.0 has a php5 core and uses it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文