为什么这个构造函数无法在 Code Igniter 中加载?
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该是这样...
您正在经历的教程可能基于 1.7.2,它具有 php4 的核心,没有使用 php5 __construct() 构建类构造函数的方法。 Codeigniter 2.0.0 有一个 php5 核心并使用它。
It should be this...
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.