这个例子(我需要扩展DOMDocument
)显示了问题:var_dump(config)
返回NULL
(!),但有一个初始化。
class DOMxDocument extends DOMDocument {
public $X = 22;
public $config = array(
'a' => false,
'b' => true
);
public function __construct($newconfig=NULL) {
print "X={$this->X}\nY:";
var_dump($this->config); // NULL!!
parent::__construct("1.0", "UTF-8");
}
}