CODE.php 796 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. return [
  3. [
  4. '#VALUE!',
  5. null,
  6. ],
  7. [
  8. '#VALUE!',
  9. '',
  10. ],
  11. [
  12. 65,
  13. 'ABC',
  14. ],
  15. [
  16. 49,
  17. 123,
  18. ],
  19. [
  20. 84,
  21. true,
  22. ],
  23. [
  24. 68,
  25. 'DEF',
  26. ],
  27. [
  28. 80,
  29. 'PhpSpreadsheet',
  30. ],
  31. [
  32. 49,
  33. 1.5,
  34. ],
  35. [
  36. 77,
  37. 'Mark Baker',
  38. ],
  39. [
  40. 109,
  41. 'mark baker',
  42. ],
  43. [
  44. 163,
  45. '£125.00',
  46. ],
  47. [
  48. 12103,
  49. '⽇',
  50. ],
  51. [
  52. 0x153,
  53. 'œ',
  54. ],
  55. [
  56. 0x192,
  57. 'ƒ',
  58. ],
  59. [
  60. 0x2105,
  61. '℅',
  62. ],
  63. [
  64. 0x2211,
  65. '∑',
  66. ],
  67. [
  68. 0x2020,
  69. '†',
  70. ],
  71. 'omitted argument' => ['exception'],
  72. ];