mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-11-19 23:02:40 +09:00
22 lines
234 B
Plaintext
22 lines
234 B
Plaintext
Invalid octal literals
|
|
-----
|
|
<?php
|
|
0787;
|
|
-----
|
|
!!php7
|
|
Invalid numeric literal from 2:1 to 2:4
|
|
array(
|
|
0: Scalar_LNumber(
|
|
value: 0
|
|
)
|
|
)
|
|
-----
|
|
<?php
|
|
0787;
|
|
-----
|
|
!!php5
|
|
array(
|
|
0: Scalar_LNumber(
|
|
value: 7
|
|
)
|
|
) |