【发布时间】:2014-03-07 12:18:02
【问题描述】:
您好,这是我的代码,我在第 14 行有错误,为什么? 我在配置文件中定义了 base_url 和 css。
<?php
class Start extends CI_Controller{
var $base;
var $css;
public function Start(){
parent::CI_Controller();
$this->base = $this->config->item('base_url');
$this->css = $this->config->item('css');
}
public function hello($name){
$data['css'] = $this->css;
$data['base'] = $this->base;
$data['mytitle'] = 'Welcome to site';
$data['mytext'] = "Hello, $name, now we're getting dynamic";
$this->load->view('testview', $data);
}
}
错误:
Fatal error: Call to undefined method CI_Controller::CI_Controller() in C:\wamp\www\sandbox\application\controllers\start.php on line 14
【问题讨论】:
-
试试
parent::__construct()
标签: php methods codeigniter-2