<?php class A { const C = self::C; function c() { echo static::C; } } class B extends A { const C = 'PHP'; } (new B)->c();
You have javascript disabled. You will not be able to edit any code.