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