我有以下类层次结构,如下面的复制脚本所示:
<?php
header('Content-Type: text/plain');
class A
{
public $config = array(
'param1' => 1,
'param2' => 2
);
public function __construct(array $config = null){
$this->config = (object)(empty($config) ? $this->config : array_merge($this->config, $config));
}
}
class B extends A
{
public $config = array(
'param3' => 1
);
public function __construct(array $config = null){
parent::__construct($config);
// other actions
}
}
$test = new B();
var_dump($test);
?>
输出:
object(B)#1 (1) {
["config"]=>
object(stdClass)#2 (1) {
["param3"]=>
int(1)
}
}
我想要的是A::$config
不被B::$config
. 可能有很多B
我想更改的后代类,但如果匹配所有父类的值$config
,我需要$config
合并/覆盖这些值。$config
问:我该怎么做?
我尝试过使用array_merge()
,但在非静态模式下,这些变量只是覆盖了自己。static
有没有办法在没有(后期静态绑定)的情况下实现类树的合并效果?