| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- return [
- [
- '#VALUE!',
- 'ABC',
- ],
- [
- '#VALUE!',
- -5,
- ],
- [
- '#VALUE!',
- 0,
- ],
- [
- 'A',
- 65,
- ],
- [
- '{',
- 123,
- ],
- [
- '~',
- 126,
- ],
- [
- 'Á',
- 193,
- ],
- [
- 'ÿ',
- 255,
- ],
- [
- '#VALUE!',
- 256,
- ],
- [
- '#VALUE!', // '⽇',
- 12103,
- ],
- [
- '#VALUE!', // 'œ',
- 0x153,
- ],
- [
- '#VALUE!', // 'ƒ',
- 0x192,
- ],
- [
- '#VALUE!', // '℅',
- 0x2105,
- ],
- [
- '#VALUE!', // '∑',
- 0x2211,
- ],
- [
- '#VALUE!', // '†',
- 0x2020,
- ],
- 'omitted argument' => ['exception'],
- 'non-printable' => ["\x02", 2],
- 'bool argument' => ["\x01", true],
- 'null argument' => ['#VALUE!', null],
- 'ascii 1 is 49' => ['1', 49],
- 'ascii 0 is 48' => ['0', 48],
- ];
|