golden hour
/home/phakp/public_html/erp/includes/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls
⬆️ Go Up
Upload
File/Folder
Size
Actions
Color
-
Del
OK
Color.php
920 B
Del
OK
ErrorCode.php
574 B
Del
OK
Escher.php
19.64 KB
Del
OK
MD5.php
6.59 KB
Del
OK
RC4.php
1.44 KB
Del
OK
Style
-
Del
OK
Edit: ErrorCode.php
<?php namespace PhpOffice\PhpSpreadsheet\Reader\Xls; class ErrorCode { protected static $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 * * @return bool|string */ public static function lookup($code) { if (isset(self::$map[$code])) { return self::$map[$code]; } return false; } }
Save