Server : Apache/2 System : Linux server1.tkcorporation.co.th 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 i686 User : ifixit ( 537) PHP Version : 5.3.29 Disable Function : exec,system,passthru,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,dl,popen,show_source Directory : /home/ifixit/public_html/assets/pdf/PHPExcel/Reader/Excel5/ |
<?php 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; } }