Files
PhpSpreadsheet/tests/data/Calculation/TextData/LOWER.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

33 lines
428 B
PHP

<?php
return [
[
'abcdefghi',
'AbCdEfGhI',
],
[
'mark baker',
'MARK BAKER',
],
[
'buenos días',
'BUENOS DÍAS',
],
[
'καλημερα',
'ΚΑΛΗΜΕΡΑ',
],
[
'доброе утро',
'ДОБРОЕ УТРО',
],
[
'true',
true,
],
[
'false',
false,
],
];