0

致命错误:在第 8 行的 C:\xampp\htdocs\CodeIgniter\application\controllers\hello.php 中调用未定义的方法 CI_Controller::CI_Controller()

我是框架新手。我在做一个小应用程序时在 CodeIgniter 中遇到了上述错误。请帮助我..我的代码如下

<?php 
class Hello extends CI_Controller {
var $name;
var $color;

function Hello()
{
parent::CI_Controller();
$this->name= 'Andi';
$this->color= 'red';
}

function you()
{
$data['name'] = $this->name;
$data['color'] = $this->color;
$this->load->views('you_view', $data);
}
}
?>
4

2 回答 2

3

替换此功能:

function Hello()
{
    parent::CI_Controller();
    $this->name     =   'Andi';
    $this->color    =   'red';
}

和:

public function __construct() {
    parent::__construct();
    $this->name     =   'Andi';
    $this->color    =   'red';
}

注意:在最新版本的 Codeigniter 中,您需要
使用构造函数而不是类名作为构造函数。

于 2013-11-06T05:46:25.383 回答
0

您使用了 php 5,而在 php 5 中编写构造函数的方式是 __construct() ,其中 php 4 允许开发人员将构造函数编写为您在代码中使用的类名。

所以,请把你的构造函数写成......

function __construct()
{
    parent::CI_Controller();
    $this->name= 'Andi';
    $this->color= 'red';
}

我想你的问题会解决的。

于 2013-11-06T06:38:34.740 回答