mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 03:48:23 +00:00
1a7b9a446a
* Refactoring the Excel Text functions * More unit tests for utf-8 handling, for edge cases, and for argument validations
15 lines
354 B
PHP
15 lines
354 B
PHP
<?php
|
|
|
|
return [
|
|
['#VALUE!'], // exception not enough args
|
|
['#VALUE!', '"ABC"'], // exception not enough args
|
|
['#VALUE!', '"ABC"', '"DEF"'],
|
|
['ABCABCABC', '"ABC"', 3],
|
|
['ABCABC', '"ABC"', 2.2],
|
|
['', '"ABC"', 0],
|
|
['TRUETRUE', true, 2],
|
|
['111', 1, 3],
|
|
['δύο δύο ', '"δύο "', 2],
|
|
['#VALUE!', '"ABC"', -1],
|
|
];
|