mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-27 10:30:02 +00:00
d2e6db71fa
* Additional unit tests for VLOOKUP() and HLOOKUP() * Additional unit tests for CHOOSE() * Unit tests for HYPERLINK() function * Fix CHOOSE() test for spillage
27 lines
582 B
PHP
27 lines
582 B
PHP
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
|
|
|
|
return [
|
|
[
|
|
['https://phpspreadsheet.readthedocs.io/en/latest/', 'https://phpspreadsheet.readthedocs.io/en/latest/'],
|
|
'https://phpspreadsheet.readthedocs.io/en/latest/',
|
|
null,
|
|
],
|
|
[
|
|
['https://phpspreadsheet.readthedocs.io/en/latest/', 'Read the Docs'],
|
|
'https://phpspreadsheet.readthedocs.io/en/latest/',
|
|
'Read the Docs',
|
|
],
|
|
[
|
|
Functions::REF(),
|
|
null,
|
|
null,
|
|
],
|
|
[
|
|
Functions::REF(),
|
|
'',
|
|
null,
|
|
],
|
|
];
|