mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-02 17:28:27 +01:00
17 lines
179 B
Plaintext
17 lines
179 B
Plaintext
|
Invalid octal literals
|
||
|
-----
|
||
|
<?php
|
||
|
0787;
|
||
|
-----
|
||
|
!!php7
|
||
|
Invalid numeric literal from 2:1 to 2:4
|
||
|
-----
|
||
|
<?php
|
||
|
0787;
|
||
|
-----
|
||
|
!!php5
|
||
|
array(
|
||
|
0: Scalar_LNumber(
|
||
|
value: 7
|
||
|
)
|
||
|
)
|