1 2 3 4 5 6 7 8 9 10 11 12
--TEST-- Ensure a interface can have public constants --FILE-- <?php interface IA { public const FOO = 10; } echo "Done\n"; ?> --EXPECT-- Done