OCT2DEC.php 477 B

1234567891011121314151617181920
  1. <?php
  2. return [
  3. ['751', '1357'],
  4. ['166', '246'],
  5. ['5349', '12345'],
  6. ['#NUM!', '123.45'],
  7. ['0', '0'],
  8. ['#VALUE!', 'true'],
  9. ['#VALUE!', 'false'],
  10. ['#NUM!', '3579'],
  11. ['44', '54'],
  12. ['-165', '7777777533'], // 2's Complement
  13. ['65', 'A2'],
  14. ['0', 'A3'],
  15. ['exception', ''],
  16. ['#NUM!', '"37777777770"'], // too many digits
  17. [536870911, '"3777777777"'], // highest positive
  18. [-536870912, '"4000000000"'], // lowest negative
  19. ];