Sign in
apache
/
netbeans
/
419f65eb0cccf624032c1c4925bf8d58069043ae
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
constantArrayAccess_03.php
blob: b8ad77570658d6a312fedb7a51197573249a4f42 [
file
] [
log
] [
blame
]
<?
php
class
ConstantClass
{
private
static
$index
=
0
;
const
CLASS_CONSTANT1
=
[
"a"
,
"b"
];
const
CLASS_CONSTANT2
=
self
::
CLASS_CONSTANT1
[
self
::
$index
];
}