Files
PhpSpreadsheet/tests/data/Calculation/TextData/PROPER.php
T
Mark Baker 1a7b9a446a First phase of refactoring the Excel Text functions (#1945)
* Refactoring the Excel Text functions
* More unit tests for utf-8 handling, for edge cases, and for argument validations
2021-03-23 13:34:28 +01:00

29 lines
373 B
PHP

<?php
return [
[
'Mark Baker',
'MARK BAKER',
],
[
'Buenos Días',
'BUENOS DÍAS',
],
[
'Καλημερα',
'ΚΑΛΗΜΕΡΑ',
],
[
'Доброе Утро',
'ДОБРОЕ УТРО',
],
[
'True',
true,
],
[
'False',
false,
],
];