mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-24 18:08:18 +00:00
684c677937
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.
40 lines
567 B
PHP
40 lines
567 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 argument' => ['exception'],
|
|
];
|