ErrorCode.php 539 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. class PHPExcel_Reader_Excel5_ErrorCode
  3. {
  4. protected static $map = array(
  5. 0x00 => '#NULL!',
  6. 0x07 => '#DIV/0!',
  7. 0x0F => '#VALUE!',
  8. 0x17 => '#REF!',
  9. 0x1D => '#NAME?',
  10. 0x24 => '#NUM!',
  11. 0x2A => '#N/A',
  12. );
  13. /**
  14. * Map error code, e.g. '#N/A'
  15. *
  16. * @param int $code
  17. * @return string
  18. */
  19. public static function lookup($code)
  20. {
  21. if (isset(self::$map[$code])) {
  22. return self::$map[$code];
  23. }
  24. return false;
  25. }
  26. }