mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-30 03:59:11 +00:00
39 lines
769 B
PHP
39 lines
769 B
PHP
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
|
|
|
|
return [
|
|
[1, -1.5, -1.5],
|
|
[0, -0.75, -1.5],
|
|
[0, 0, -1.5],
|
|
[0, 0.75, -1.5],
|
|
[0, 1.5, -1.5],
|
|
[0, -1.5, -0.75],
|
|
[1, -0.75, -0.75],
|
|
[0, 0, -0.75],
|
|
[0, 0.75, -0.75],
|
|
[0, 1.5, -0.75],
|
|
[0, -1.5, 0],
|
|
[0, -0.75, 0],
|
|
[1, 0, 0],
|
|
[0, 0.75, 0],
|
|
[0, 1.5, 0],
|
|
[0, -1.5, 0.75],
|
|
[0, -0.75, 0.75],
|
|
[0, 0, 0.75],
|
|
[1, 0.75, 0.75],
|
|
[0, 1.5, 0.75],
|
|
[0, -1.5, 1.5],
|
|
[0, -0.75, 1.5],
|
|
[0, 0, 1.5],
|
|
[0, 0.75, 1.5],
|
|
[1, 1.5, 1.5],
|
|
[0, -0.75],
|
|
[1, 0],
|
|
[0, 0.75],
|
|
[ExcelError::VALUE(), 1, true],
|
|
[ExcelError::VALUE(), true, 1],
|
|
[ExcelError::VALUE(), 1, 'ABC'],
|
|
[ExcelError::VALUE(), 'ABC', 1],
|
|
];
|