我对codeigniter完全是新手。现在我收到一个错误,上面写着
CI_Controller::CI_Controller() in D:\wamp\www\codeigniter\application\controllers\hello.php on line 8
。
我还想让你解释为什么我们需要父母在那条线上。如果你清楚地解释一下程序的流程,那将是一个很大的帮助。
<?php
class Hello extends CI_Controller
{
var $name;
var $color;
function Hello()
{
parent::CI_Controller();
$this->name="andy";
$this->color="red";
}
function you()
{
$data['name']=$this->name;
$data['color']=$this->color;
$this->load_>view("you_view",$data);
}
}
?>
答案 0 :(得分:0)
construct
必须像这样实施
public function __construct(){
parent::__construct();
$this->data=array(
'name'=>'andy'
'color'=>'red'
);
}
function you(){
$this->load_>view("you_view",$this->data);
}