mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-23 21:38:30 +00:00
33 lines
427 B
PHP
33 lines
427 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
27,
|
|
10, 7, 9, 27, 2,
|
|
],
|
|
[
|
|
10,
|
|
10, 7, 9, '17', 2,
|
|
],
|
|
[
|
|
0,
|
|
-10, -7, -9, '17', -2,
|
|
],
|
|
[
|
|
1,
|
|
-10, true, -9, '17', -2,
|
|
],
|
|
[
|
|
1,
|
|
null, 'STRING', true, '', -2, 0, false, '27',
|
|
],
|
|
[
|
|
0,
|
|
null, 'STRING', '', 'xl95',
|
|
],
|
|
[
|
|
0,
|
|
null, null, null, null,
|
|
],
|
|
];
|