我正在尝试使用MVC来创建一个简单的框架。这是我正在做的一个例子:
<?php
require_once('config.php'); //Here I have the Config object
class App{
protected $config;
protected $controller;
public function init(){
$this->config = new Config;
$this->controller = new Main_Controller;
}
}
class Main_Controller extends App{
public function __construct(){
var_dump($this->config);
}
}
$app = new App;
$app->init();
问题是我的var_dump返回NULL,那么为什么Main_Controller没有读取该App属性?
答案 0 :(得分:0)
如果子类定义了构造函数,则不会隐式调用父构造函数。为了运行父构造函数,需要在子构造函数中调用parent :: __ construct()。如果子节点没有定义构造函数,那么它可以像普通类方法一样从父类继承(如果它没有被声明为私有)。