Next Oct 23 Previous
The first shall be the last
Consider the following program:
<?php
class A {
const A = X::X;
}
class X {
const X = 3;
}
echo A::A;
?>
What will it display in your browser window?
A: 3
B: X
C: Notice: Use of undefined constant X - assumed 'X' in ... on line 4
D: A parse error



