我有2个课程,主要和扩展.我需要在扩展类中使用主变量.
vars['key'] = 'value'; class Extended extends Main { } $other = new Extended; var_dump($other->vars); ?>
我能做谁?
无效例如:
$v) { $this->$k = $v; } } } ?>
我需要一些更透明,更有效的解决方案:)
使用简单的构造函数很容易实现
string = parent::$string; } } $class = new Two; echo $class->string; // WORLD ?>