PhpSpreadsheet/tests/data/Calculation/TextData/UPPER.php

34 lines
465 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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