0

我有一个控制器,如:

class listItems extends CI_Controller{
    private $num;

    public class __construct(){
        parent::__construct();
        $this->num=10;
    }

    public class index(){
        echo $this->num;
    }
}

当我这样做时,我什么都没有。为什么?

4

1 回答 1

2

两个不同的班级。需要下相同,所以function改用。

class listItems extends CI_Controller {

    private $num;

    public function __construct() {
        parent::__construct();
        $this->num=10;
    }

    public function index() {
        echo $this->num;
    }

}
于 2012-09-22T23:16:13.553 回答