<?php interface I1 { const C1 = '';} class C3 implements I1 { const C1 = 'c2';} $c3 = new C3; var_dump($c3::C1);
You have javascript disabled. You will not be able to edit any code.