mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-22 02:44:58 +00:00
1a7b9a446a
* Refactoring the Excel Text functions * More unit tests for utf-8 handling, for edge cases, and for argument validations
29 lines
373 B
PHP
29 lines
373 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
'Mark Baker',
|
|
'MARK BAKER',
|
|
],
|
|
[
|
|
'Buenos Días',
|
|
'BUENOS DÍAS',
|
|
],
|
|
[
|
|
'Καλημερα',
|
|
'ΚΑΛΗΜΕΡΑ',
|
|
],
|
|
[
|
|
'Доброе Утро',
|
|
'ДОБРОЕ УТРО',
|
|
],
|
|
[
|
|
'True',
|
|
true,
|
|
],
|
|
[
|
|
'False',
|
|
false,
|
|
],
|
|
];
|