| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- return [
- [
- '#VALUE!',
- null,
- ],
- [
- '#VALUE!',
- '',
- ],
- [
- 65,
- 'ABC',
- ],
- [
- 49,
- 123,
- ],
- [
- 84,
- true,
- ],
- [
- 68,
- 'DEF',
- ],
- [
- 80,
- 'PhpSpreadsheet',
- ],
- [
- 49,
- 1.5,
- ],
- [
- 77,
- 'Mark Baker',
- ],
- [
- 109,
- 'mark baker',
- ],
- [
- 163,
- '£125.00',
- ],
- [
- 12103,
- '⽇',
- ],
- [
- 0x153,
- 'œ',
- ],
- [
- 0x192,
- 'ƒ',
- ],
- [
- 0x2105,
- '℅',
- ],
- [
- 0x2211,
- '∑',
- ],
- [
- 0x2020,
- '†',
- ],
- 'omitted argument' => ['exception'],
- ];
|