mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-02 17:28:27 +01:00
8090531acd
(FOO)[0] is only supported on 7.x
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];
|