Files
PhpSpreadsheet/tests/data/Calculation/TextData/UPPER.php
T
oleibman 684c677937 Document NumberFormat Wizard Dependency on Intl Extension
Intl is only a "suggested" extension. A lot of the NumberFormat Wizard code depends on it. That's insufficient reason to make it required, but the suggestion text now mentions this dependency explicitly. Also clean up the Wizard documentation to reflect some changes since PhpSpreadsheet 1.28.
2025-09-17 23:04:31 -07:00

40 lines
568 B
PHP

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