PHP Codeigniter - parent::__construct

后端 未结 3 1501
别跟我提以往
别跟我提以往 2020-12-07 21:42

When getting inherited from a parent class in PHP, especially in Codeigniter what does parent::__construct or parent::model() do?

How would it make diff

3条回答
  •  我在风中等你
    2020-12-07 22:08

    what does parent::__construct or parent::model() do?

    these functions do exactly the same, only the construct function used to be named after the class itself prior to PHP5. I say in your example you are extending the Model class (and on some older version of CI since you don't need to use CI_model), if I'm correct in this __construct is the same as model().

提交回复
热议问题