ABS.php 312 B

123456789101112131415161718
  1. <?php
  2. return [
  3. ['exception'], // exception - not enough args
  4. ['#VALUE!', 'ABC'],
  5. [35.51, '35.51'],
  6. [35.51, '=35.51'],
  7. [35.51, '="35.51"'],
  8. [35.51, 35.51],
  9. [35.51, -35.51],
  10. [6, '6'],
  11. [7, '-7'],
  12. [0, 0],
  13. [0, null],
  14. [0, false],
  15. [1, true],
  16. ['#VALUE!', ''],
  17. ];