mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2025-01-23 05:41:17 +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];
|