p2 project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
940 B

<?php
return [
[
'null',
null,
],
[
'e',
'#NULL!',
],
[
'b',
false,
],
[
'b',
true,
],
[
's',
'FALSE',
],
[
's',
'TRUE',
],
[
's',
'',
],
[
's',
'ABC',
],
[
'n',
'123',
],
[
'n',
123,
],
[
'n',
0.123,
],
[
'n',
'-123',
],
[
'n',
'1.23E4',
],
[
'n',
'-1.23E4',
],
[
'n',
'1.23E-4',
],
[
's',
'000123',
],
[
'f',
'=123',
],
[
'e',
'#DIV/0!',
],
[
's',
'123456\n',
],
'Numeric that exceeds PHP MAX_INT Size' => [
's',
'1234567890123459012345689012345690',
],
];