mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 04:24:43 +01:00
14 lines
142 B
Plaintext
14 lines
142 B
Plaintext
|
Constant/literal dereferencing
|
||
|
-----
|
||
|
<?php
|
||
|
|
||
|
FOO[0];
|
||
|
FOO::BAR[0];
|
||
|
'FOO'[0];
|
||
|
array(FOO)[0];
|
||
|
-----
|
||
|
FOO[0];
|
||
|
FOO::BAR[0];
|
||
|
'FOO'[0];
|
||
|
array(FOO)[0];
|