<?php error_reporting(-1); class GrandMother { function f() { echo __METHOD__; } } class Mother extends GrandMother { function f() { echo __METHOD__; } } class Child extends Mother { function f() { GrandMother::f(); } } $c = new Child; $c->f();
You have javascript disabled. You will not be able to edit any code.