| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- class PHPExcel_Reader_Excel5_ErrorCode
- {
- protected static $map = array(
- 0x00 => '#NULL!',
- 0x07 => '#DIV/0!',
- 0x0F => '#VALUE!',
- 0x17 => '#REF!',
- 0x1D => '#NAME?',
- 0x24 => '#NUM!',
- 0x2A => '#N/A',
- );
- /**
- * Map error code, e.g. '#N/A'
- *
- * @param int $code
- * @return string
- */
- public static function lookup($code)
- {
- if (isset(self::$map[$code])) {
- return self::$map[$code];
- }
- return false;
- }
- }
|