<?php // echo A::A; // Undefined constant "B" define('B', 'yes'); class A { public const A = B; } echo A::A; // yes ?>
You have javascript disabled. You will not be able to edit any code.