mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 15:38:19 +00:00
1a7b9a446a
* Refactoring the Excel Text functions * More unit tests for utf-8 handling, for edge cases, and for argument validations
33 lines
428 B
PHP
33 lines
428 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
'abcdefghi',
|
|
'AbCdEfGhI',
|
|
],
|
|
[
|
|
'mark baker',
|
|
'MARK BAKER',
|
|
],
|
|
[
|
|
'buenos días',
|
|
'BUENOS DÍAS',
|
|
],
|
|
[
|
|
'καλημερα',
|
|
'ΚΑΛΗΜΕΡΑ',
|
|
],
|
|
[
|
|
'доброе утро',
|
|
'ДОБРОЕ УТРО',
|
|
],
|
|
[
|
|
'true',
|
|
true,
|
|
],
|
|
[
|
|
'false',
|
|
false,
|
|
],
|
|
];
|