Server : Apache/2.4.58 (Ubuntu) System : Linux yumsem00.cafe24.com 5.4.0-131-generic #147-Ubuntu SMP Fri Oct 14 17:07:22 UTC 2022 x86_64 User : root ( 0) PHP Version : 8.2.14 Disable Function : NONE Directory : /var/www/html/wp-includes/22PhpOffice22/PhpSpreadsheet/Reader/Xls/ |
Upload File : |
<?php namespace PhpOffice\PhpSpreadsheet\Reader\Xls; class ErrorCode { private const ERROR_CODE_MAP = [ 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 */ public static function lookup($code): string|bool { return self::ERROR_CODE_MAP[$code] ?? false; } }