php copy数组属性,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()但是在非静态模式下这些变量只是覆盖它们自己.有没有办法在没有静态(后期静态绑定)的情况下实现类树的合并效果?

解决方法:

您可以重新构建扩展类的实例化方式

class B extends A

{

private $defaults = array('param3' => 1);

public function __construct(array $config = null){

parent::__construct($config?array_merge($this->defaults, $config):$this->defaults);

}

}

标签:php,oop,inheritance,array-merge

来源: https://codeday.me/bug/20190716/1478625.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值