mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 01:22:23 -04:00
26 lines
No EOL
324 B
Text
26 lines
No EOL
324 B
Text
Invalid octal literals
|
|
-----
|
|
<?php
|
|
0787;
|
|
-----
|
|
!!php7
|
|
Invalid numeric literal from 2:1 to 2:4
|
|
array(
|
|
0: Stmt_Expression(
|
|
expr: Scalar_LNumber(
|
|
value: 0
|
|
)
|
|
)
|
|
)
|
|
-----
|
|
<?php
|
|
0787;
|
|
-----
|
|
!!php5
|
|
array(
|
|
0: Stmt_Expression(
|
|
expr: Scalar_LNumber(
|
|
value: 7
|
|
)
|
|
)
|
|
) |