<?php class A { public $v = 'a'; public function init() { echo "A::init, {$this->v}\n"; } } class B extends A { public $v = 'b'; } class C extends B { public $v = 'c'; public function init() { echo "C::init, {$this->v}\n"; $grandPa = get_parent_class(get_parent_class($this)); $grandPa::init(); } } $c = new C; $c->init();
You have javascript disabled. You will not be able to edit any code.