当前位置:  开发笔记 > 编程语言 > 正文

附加到PHP中父类的数组变量

如何解决《附加到PHP中父类的数组变量》经验,为你挑选了1个好方法。

如何在PHP中为子类扩展父类的选项数组?

我有这样的事情:

class ParentClass {

     public $options = array(
          'option1'=>'setting1'
     );

     //The rest of the functions would follow
}

我想在子类中追加该选项数组而不删除任何父选项.我尝试过做这样的事情,但还没有完成它的工作:

class ChildClass extends ParentClass {

     public $options = parent::options + array(
          'option2'=>'setting2'
     );

     //The rest of the functions would follow
}

做这样的事情最好的方法是什么?



1> Czimi..:

我认为最好在构造函数中初始化此属性,然后可以在任何后代类中扩展该值:

options = array(
            'option1'=>'setting1'
        );
    }
    //The rest of the functions would follow
}

class ChildClass extends ParentClass {
    public function __construct() {
        parent::__construct();
        $this->options['option2'] = 'setting2';
    }
    //The rest of the functions would follow
}
?>

推荐阅读
Gbom2402851125
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有