| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644 |
- <?php
- class PHPExcel_Reader_Excel5 {
- // ParseXL definitions
- const XLS_BIFF8 = 0x0600;
- const XLS_BIFF7 = 0x0500;
- const XLS_WorkbookGlobals = 0x0005;
- const XLS_Worksheet = 0x0010;
- // record identifiers
- const XLS_Type_FORMULA = 0x0006;
- const XLS_Type_FORMULA2 = 0x0406;
- const XLS_Type_EOF = 0x000a;
- const XLS_Type_PROTECT = 0x0012;
- const XLS_Type_OBJECTPROTECT = 0x0063;
- const XLS_Type_SCENPROTECT = 0x00dd;
- const XLS_Type_PASSWORD = 0x0013;
- const XLS_Type_HEADER = 0x0014;
- const XLS_Type_FOOTER = 0x0015;
- const XLS_Type_EXTERNSHEET = 0x0017;
- const XLS_Type_DEFINEDNAME = 0x0018;
- const XLS_Type_VERTICALPAGEBREAKS = 0x001a;
- const XLS_Type_HORIZONTALPAGEBREAKS = 0x001b;
- const XLS_Type_NOTE = 0x001c;
- const XLS_Type_SELECTION = 0x001d;
- const XLS_Type_DATEMODE = 0x0022;
- const XLS_Type_EXTERNNAME = 0x0023;
- const XLS_Type_LEFTMARGIN = 0x0026;
- const XLS_Type_RIGHTMARGIN = 0x0027;
- const XLS_Type_TOPMARGIN = 0x0028;
- const XLS_Type_BOTTOMMARGIN = 0x0029;
- const XLS_Type_PRINTGRIDLINES = 0x002b;
- const XLS_Type_FILEPASS = 0x002f;
- const XLS_Type_FONT = 0x0031;
- const XLS_Type_CONTINUE = 0x003c;
- const XLS_Type_PANE = 0x0041;
- const XLS_Type_CODEPAGE = 0x0042;
- const XLS_Type_DEFCOLWIDTH = 0x0055;
- const XLS_Type_OBJ = 0x005d;
- const XLS_Type_COLINFO = 0x007d;
- const XLS_Type_IMDATA = 0x007f;
- const XLS_Type_SHEETPR = 0x0081;
- const XLS_Type_HCENTER = 0x0083;
- const XLS_Type_VCENTER = 0x0084;
- const XLS_Type_SHEET = 0x0085;
- const XLS_Type_PALETTE = 0x0092;
- const XLS_Type_SCL = 0x00a0;
- const XLS_Type_PAGESETUP = 0x00a1;
- const XLS_Type_MULRK = 0x00bd;
- const XLS_Type_MULBLANK = 0x00be;
- const XLS_Type_DBCELL = 0x00d7;
- const XLS_Type_XF = 0x00e0;
- const XLS_Type_MERGEDCELLS = 0x00e5;
- const XLS_Type_MSODRAWINGGROUP = 0x00eb;
- const XLS_Type_MSODRAWING = 0x00ec;
- const XLS_Type_SST = 0x00fc;
- const XLS_Type_LABELSST = 0x00fd;
- const XLS_Type_EXTSST = 0x00ff;
- const XLS_Type_EXTERNALBOOK = 0x01ae;
- const XLS_Type_DATAVALIDATIONS = 0x01b2;
- const XLS_Type_TXO = 0x01b6;
- const XLS_Type_HYPERLINK = 0x01b8;
- const XLS_Type_DATAVALIDATION = 0x01be;
- const XLS_Type_DIMENSION = 0x0200;
- const XLS_Type_BLANK = 0x0201;
- const XLS_Type_NUMBER = 0x0203;
- const XLS_Type_LABEL = 0x0204;
- const XLS_Type_BOOLERR = 0x0205;
- const XLS_Type_STRING = 0x0207;
- const XLS_Type_ROW = 0x0208;
- const XLS_Type_INDEX = 0x020b;
- const XLS_Type_ARRAY = 0x0221;
- const XLS_Type_DEFAULTROWHEIGHT = 0x0225;
- const XLS_Type_WINDOW2 = 0x023e;
- const XLS_Type_RK = 0x007e;
- const XLS_Type_RK2 = 0x027e;
- const XLS_Type_STYLE = 0x0293;
- const XLS_Type_FORMAT = 0x041e;
- const XLS_Type_SHAREDFMLA = 0x04bc;
- const XLS_Type_BOF = 0x0809;
- const XLS_Type_SHEETPROTECTION = 0x0867;
- const XLS_Type_RANGEPROTECTION = 0x0868;
- const XLS_Type_SHEETLAYOUT = 0x0862;
- const XLS_Type_XFEXT = 0x087d;
- const XLS_Type_PAGELAYOUTVIEW = 0x088b;
- const XLS_Type_UNKNOWN = 0xffff;
- // Encryption type
- const MS_BIFF_CRYPTO_NONE = 0;
- const MS_BIFF_CRYPTO_XOR = 1;
- const MS_BIFF_CRYPTO_RC4 = 2;
- // Size of stream blocks when using RC4 encryption
- const REKEY_BLOCK = 0x400;
- private $_pos;
- private $_data;
- private $_cell;
- private $_sst;
- private $_sheets;
- private $_dataSize;
- private static $_codepage = 'CP1252';
- private $index = 0;
- private $curretSheet = 0;
- private $builtInFormats = array(
- 0 => 'General',
- 1 => '0',
- 2 => '0.00',
- 3 => '#,##0',
- 4 => '#,##0.00',
- 9 => '0%',
- 10 => '0.00%',
- 11 => '0.00E+00',
- 12 => '# ?/?',
- 13 => '# ??/??',
- 14 => 'yyyy/m/d',
- 15 => 'd-mmm-yy',
- 16 => 'd-mmm',
- 17 => 'mmm-yy',
- 18 => 'h:mm AM/PM',
- 19 => 'h:mm:ss AM/PM',
- 20 => 'h:mm',
- 21 => 'h:mm:ss',
- 22 => 'yyyy/m/d h:mm',
- 28 => 'm月d日',
- 31 => 'yyyy年m月d日',
- 32 => 'h时mmi分',
- 33 => 'h时mmi分ss秒',
- 34 => 'AM/PM h时mmi分',
- 35 => 'AM/PM h时mmi分ss秒',
- 37 => '#,##0 ;(#,##0)',
- 38 => '#,##0 ;[Red](#,##0)',
- 39 => '#,##0.00;(#,##0.00)',
- 40 => '#,##0.00;[Red](#,##0.00)',
- 44 => '_("$"* #,##0.00_);_("$"* \(#,##0.00\);_("$"* "-"??_);_(@_)',
- 45 => 'mm:ss',
- 46 => '[h]:mm:ss',
- 47 => 'mm:ss.0',
- 48 => '##0.0E+0',
- 49 => '@',
- // CHT
- 27 => 'yyyy年m月',
- 30 => 'm/d/yy',
- 36 => '[$-404]e/m/d',
- 50 => '[$-404]e/m/d',
- 57 => '[$-404]e/m/d',
- // THA
- 59 => 't0',
- 60 => 't0.00',
- 61 => 't#,##0',
- 62 => 't#,##0.00',
- 67 => 't0%',
- 68 => 't0.00%',
- 69 => 't# ?/?',
- 70 => 't# ??/??'
- );
- public $error = false;
- /**
- * Create a new Spreadsheet_Excel_Reader instance
- */
- public function __construct($file) {
- if ( ! file_exists($file)) {
- throw new Exception("Could not open " . $file . " for reading! File does not exist.");
- }
- try {
- $ole = new PHPExcel_Reader_OLERead();
- $ole->read($file);
- $this->_data = $ole->getStream($ole->wrkbook);
- return true;
- } catch (Exception $e) {
- return false;
- }
- }
- /**
- * Changes sheet to another.
- * @param bool
- */
- public function ChangeSheet($index){
- $this->curretSheet = $index;
- return true;
- }
- /**
- * 获取Cell数据
- */
- public function getCell(){
- $this->_cell = array();
- $this->_endRow = false;
- $this->_key = null;
- if( ! $this->_parse){
- $this->_parse = true;
- $this->_pos = 0;
- // Parse Workbook Global Substream
- while ($this->_pos < $this->_dataSize) {
- $code = self::_GetInt2d($this->_data, $this->_pos);
- switch ($code) {
- case self::XLS_Type_SST: $this->_readSst(); break;
- case self::XLS_Type_CODEPAGE: $this->_readCodepage(); break;
- case self::XLS_Type_DATEMODE: $this->_readDateMode(); break;
- case self::XLS_Type_FORMAT: $this->_readFormat(); break;
- case self::XLS_Type_XF: $this->_readXf(); break;
- case self::XLS_Type_EOF: $this->_readDefault(); break 2;
- default: $this->_readDefault(); break;
- }
- }
- }
- // Parse the individual sheet
- $this->_pos = $this->_lastPos ? $this->_lastPos : $this->_sheets[$this->curretSheet]['offset'];
- while ($this->_pos <= $this->_dataSize - 4) {
- if($this->_endRow) break;
- $code = self::_GetInt2d($this->_data, $this->_pos);
- switch ($code) {
- //case self::XLS_Type_RK:
- case self::XLS_Type_RK2: $this->_readRk(); break;
- case self::XLS_Type_LABELSST: $this->_readLabelSst(); break;
- case self::XLS_Type_MULRK: $this->_readMulRk(); break;
- case self::XLS_Type_NUMBER: $this->_readNumber(); break;
- case self::XLS_Type_FORMULA:
- case self::XLS_Type_FORMULA2: $this->_readFormula(); break;
- case self::XLS_Type_BOOLERR: $this->_readBoolErr(); break;
- case self::XLS_Type_STRING: $this->_readString(); break;
- case self::XLS_Type_MULBLANK: $this->_readBlank(); break;
- case self::XLS_Type_LABEL: $this->_readLabel(); break;
- case self::XLS_Type_EOF: $this->_readDefault(); break 2;
- default: $this->_readDefault(); break;
- }
- }
- return $this->_cell;
- }
- /**
- * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns)
- */
- public function getWorksheetInfo() {
- if( ! $this->_sheets){
- $this->_dataSize = strlen($this->_data); // total byte size of Excel data (workbook global substream + sheet substreams)
- $this->_pos = 0;
- $this->_sheets = array();
- // Parse Workbook Global Substream
- while ($this->_pos < $this->_dataSize) {
- $code = self::_GetInt2d($this->_data, $this->_pos);
- switch ($code) {
- case self::XLS_Type_BOF: $this->_readBof(); break;
- case self::XLS_Type_SHEET: $this->_readSheet(); break;
- case self::XLS_Type_EOF: $this->_readDefault(); break 2;
- default: $this->_readDefault(); break;
- }
- }
- }
- if( ! isset($this->_sheets[$this->curretSheet])){
- return array();
- }
- $sheetInfo = array(
- 'worksheetName' => $this->_sheets[$this->curretSheet]['name'],
- 'lastColumnLetter' => 'A',
- 'lastColumnIndex' => 0,
- 'totalRows' => 0,
- 'totalColumns' => 0
- );
- // Parse the individual sheet
- $this->_pos = $this->_sheets[$this->curretSheet]['offset'];
- while ($this->_pos <= $this->_dataSize - 4) {
- $code = self::_GetInt2d($this->_data, $this->_pos);
- switch ($code) {
- case self::XLS_Type_RK2:
- case self::XLS_Type_LABELSST:
- case self::XLS_Type_NUMBER:
- case self::XLS_Type_FORMULA:
- case self::XLS_Type_BOOLERR:
- case self::XLS_Type_LABEL:
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- // move stream pointer to next record
- $this->_pos += 4 + $length;
- $rowIndex = self::_GetInt2d($recordData, 0) + 1;
- $columnIndex = self::_GetInt2d($recordData, 2);
- $sheetInfo['totalRows'] = max($sheetInfo['totalRows'], $rowIndex);
- $sheetInfo['lastColumnIndex'] = max($sheetInfo['lastColumnIndex'], $columnIndex);
- break;
- case self::XLS_Type_BOF: $this->_readBof(); break;
- case self::XLS_Type_EOF: $this->_readDefault(); break 2;
- default: $this->_readDefault(); break;
- }
- $sheetInfo['totalColumns'] = $sheetInfo['lastColumnIndex'] + 1;
- $sheetInfo['lastColumnLetter'] = self::_stringFromColumnIndex($sheetInfo['lastColumnIndex']);
- }
- return $sheetInfo;
- }
- private function _addCell($row, $column, $value, $xfIndex){
- if(is_null($this->_key)){
- $this->_key = $row;
- }
- if($row > $this->_key){
- $this->_endRow = true;
- return false;
- }
- $xfRecord = $this->xfRecords[$xfIndex];
- $this->_lastPos = $this->_pos;
- $this->_cell[$column] = $this->_format_value($value, $xfRecord['format']);
- }
- private function _format_value($value = '0', $format = 'General'){
- if ( ! is_numeric($value) || $format == 'General' || $format == '@') return $value;
- $sections = explode(';', $format);
- switch (count($sections)) {
- case 1:
- $format = $sections[0];
- break;
- case 2:
- $format = ($value >= 0) ? $sections[0] : $sections[1];
- $value = abs($value); // Use the absolute value
- break;
- case 3:
- $format = ($value > 0) ?
- $sections[0] : ( ($value < 0) ?
- $sections[1] : $sections[2]);
- $value = abs($value); // Use the absolute value
- break;
- case 4:
- $format = ($value > 0) ?
- $sections[0] : ( ($value < 0) ?
- $sections[1] : $sections[2]);
- $value = abs($value); // Use the absolute value
- break;
- default:
- // something is wrong, just use first section
- $format = $sections[0];
- break;
- }
- $color_regex = '/^\\[[a-zA-Z]+\\]/';
- $format = preg_replace($color_regex, '', $format);
- if (preg_match('/(\[\$[A-Z]*-[0-9A-F]*\])*[hmsdy]/i', $format)) { // datetime format
- $value = $this->_formatAsDate($value, $format);
- } else if (preg_match('/%$/', $format)) { // % number format
- $value = self::_formatAsPercentage($value, $format);
- } else {
- if ($format === '[$EUR ]#,##0.00_-') {
- $value = 'EUR ' . sprintf('%1.2f', $value);
- } else {
- // In Excel formats, "_" is used to add spacing, which we can't do in HTML
- $format = preg_replace('/_./', '', $format);
- // Some non-number characters are escaped with \, which we don't need
- $format = preg_replace("/\\\\/", '', $format);
- // Some non-number strings are quoted, so we'll get rid of the quotes, likewise any positional * symbols
- $format = str_replace(array('"','*'), '', $format);
- // Find out if we need thousands separator
- // This is indicated by a comma enclosed by a digit placeholder:
- // #,# or 0,0
- $useThousands = preg_match('/(#,#|0,0)/', $format);
- if ($useThousands) {
- $format = preg_replace('/0,0/', '00', $format);
- $format = preg_replace('/#,#/', '##', $format);
- }
- // Scale thousands, millions,...
- // This is indicated by a number of commas after a digit placeholder:
- // #, or 0.0,,
- $scale = 1; // same as no scale
- $matches = array();
- if (preg_match('/(#|0)(,+)/', $format, $matches)) {
- $scale = pow(1000, strlen($matches[2]));
- // strip the commas
- $format = preg_replace('/0,+/', '0', $format);
- $format = preg_replace('/#,+/', '#', $format);
- }
- if (preg_match('/#?.*\?\/\?/', $format, $m)) {
- //echo 'Format mask is fractional '.$format.' <br />';
- if ($value != (int)$value) {
- self::_formatAsFraction($value, $format);
- }
- } else {
- // Handle the number itself
- // scale number
- $value = $value / $scale;
- // Strip #
- $format = preg_replace('/\\#/', '0', $format);
- $n = "/\[[^\]]+\]/";
- $m = preg_replace($n, '', $format);
- $number_regex = "/(0+)(\.?)(0*)/";
- if (preg_match($number_regex, $m, $matches)) {
- $left = $matches[1];
- $dec = $matches[2];
- $right = $matches[3];
- // minimun width of formatted number (including dot)
- $minWidth = strlen($left) + strlen($dec) + strlen($right);
- if ($useThousands) {
- $value = number_format(
- $value
- , strlen($right)
- , '.'
- , ','
- );
- $value = preg_replace($number_regex, $value, $format);
- } else {
- if (preg_match('/[0#]E[+-]0/i', $format)) {
- // Scientific format
- $value = sprintf('%5.2E', $value);
- } elseif (preg_match('/0([^\d\.]+)0/', $format)) {
- $value = self::_complexNumberFormatMask($value, $format);
- } else {
- $sprintf_pattern = "%0$minWidth." . strlen($right) . "f";
- $value = sprintf($sprintf_pattern, $value);
- $value = preg_replace($number_regex, $value, $format);
- }
- }
- }
- }
- if (preg_match('/\[\$(.*)\]/u', $format, $m)) {
- // Currency or Accounting
- $currencyFormat = $m[0];
- $currencyCode = $m[1];
- list($currencyCode) = explode('-',$currencyCode);
- if ($currencyCode == '') {
- $currencyCode = '$';
- }
- $value = preg_replace('/\[\$([^\]]*)\]/u',$currencyCode,$value);
- }
- }
- }
- return $value;
- }
- private static function _complexNumberFormatMask($number, $mask) {
- if (strpos($mask,'.') !== false) {
- $numbers = explode('.', $number . '.0');
- $masks = explode('.', $mask . '.0');
- $result1 = self::_complexNumberFormatMask($numbers[0], $masks[0]);
- $result2 = strrev(self::_complexNumberFormatMask(strrev($numbers[1]), strrev($masks[1])));
- return $result1 . '.' . $result2;
- }
- $r = preg_match_all('/0+/', $mask, $result, PREG_OFFSET_CAPTURE);
- if ($r > 1) {
- $result = array_reverse($result[0]);
- foreach($result as $block) {
- $divisor = 1 . $block[0];
- $size = strlen($block[0]);
- $offset = $block[1];
- $blockValue = sprintf(
- '%0' . $size . 'd',
- fmod($number, $divisor)
- );
- $number = floor($number / $divisor);
- $mask = substr_replace($mask,$blockValue, $offset, $size);
- }
- if ($number > 0) {
- $mask = substr_replace($mask, $number, $offset, 0);
- }
- $result = $mask;
- } else {
- $result = $number;
- }
- return $result;
- }
- private static function _formatAsFraction(&$value, &$format)
- {
- $sign = ($value < 0) ? '-' : '';
- $integerPart = floor(abs($value));
- $decimalPart = trim(fmod(abs($value),1),'0.');
- $decimalLength = strlen($decimalPart);
- $decimalDivisor = pow(10,$decimalLength);
- $GCD = self::GCD(array($decimalPart, $decimalDivisor));
- $adjustedDecimalPart = $decimalPart/$GCD;
- $adjustedDecimalDivisor = $decimalDivisor/$GCD;
- if ((strpos($format,'0') !== false) || (strpos($format,'#') !== false) || (substr($format,0,3) == '? ?')) {
- if ($integerPart == 0) {
- $integerPart = '';
- }
- $value = "$sign$integerPart $adjustedDecimalPart/$adjustedDecimalDivisor";
- } else {
- $adjustedDecimalPart += $integerPart * $adjustedDecimalDivisor;
- $value = "$sign$adjustedDecimalPart/$adjustedDecimalDivisor";
- }
- }
- private static function GCD($params) {
- $returnValue = 1;
- $allValuesFactors = array();
- $flattenArr = self::flattenArray($params);
- foreach($flattenArr as $value) {
- if (!is_numeric($value)) {
- return '#VALUE!';
- } elseif ($value == 0) {
- continue;
- } elseif($value < 0) {
- return '#NULL!';
- }
- $myFactors = self::_factors($value);
- $myCountedFactors = array_count_values($myFactors);
- $allValuesFactors[] = $myCountedFactors;
- }
- $allValuesCount = count($allValuesFactors);
- if ($allValuesCount == 0) {
- return 0;
- }
- $mergedArray = $allValuesFactors[0];
- for ($i=1;$i < $allValuesCount; ++$i) {
- $mergedArray = array_intersect_key($mergedArray,$allValuesFactors[$i]);
- }
- $mergedArrayValues = count($mergedArray);
- if ($mergedArrayValues == 0) {
- return $returnValue;
- } elseif ($mergedArrayValues > 1) {
- foreach($mergedArray as $mergedKey => $mergedValue) {
- foreach($allValuesFactors as $highestPowerTest) {
- foreach($highestPowerTest as $testKey => $testValue) {
- if (($testKey == $mergedKey) && ($testValue < $mergedValue)) {
- $mergedArray[$mergedKey] = $testValue;
- $mergedValue = $testValue;
- }
- }
- }
- }
- $returnValue = 1;
- foreach($mergedArray as $key => $value) {
- $returnValue *= pow($key,$value);
- }
- return $returnValue;
- } else {
- $keys = array_keys($mergedArray);
- $key = $keys[0];
- $value = $mergedArray[$key];
- foreach($allValuesFactors as $testValue) {
- foreach($testValue as $mergedKey => $mergedValue) {
- if (($mergedKey == $key) && ($mergedValue < $value)) {
- $value = $mergedValue;
- }
- }
- }
- return pow($key,$value);
- }
- }
- //
- // Private method to return an array of the factors of the input value
- //
- private static function _factors($value) {
- $startVal = floor(sqrt($value));
- $factorArray = array();
- for ($i = $startVal; $i > 1; --$i) {
- if (($value % $i) == 0) {
- $factorArray = array_merge($factorArray,self::_factors($value / $i));
- $factorArray = array_merge($factorArray,self::_factors($i));
- if ($i <= sqrt($value)) {
- break;
- }
- }
- }
- if (!empty($factorArray)) {
- rsort($factorArray);
- return $factorArray;
- } else {
- return array((integer) $value);
- }
- }
- private static function flattenArray($array) {
- if (!is_array($array)) {
- return (array) $array;
- }
- $arrayValues = array();
- foreach ($array as $value) {
- if (is_array($value)) {
- foreach ($value as $val) {
- if (is_array($val)) {
- foreach ($val as $v) {
- $arrayValues[] = $v;
- }
- } else {
- $arrayValues[] = $val;
- }
- }
- } else {
- $arrayValues[] = $value;
- }
- }
- return $arrayValues;
- }
- private static function _formatAsPercentage(&$value, &$format)
- {
- if ($format === '0%') {
- $value = round( (100 * $value), 0) . '%';
- } else {
- if (preg_match('/\.[#0]+/i', $format, $m)) {
- $s = substr($m[0], 0, 1) . (strlen($m[0]) - 1);
- $format = str_replace($m[0], $s, $format);
- }
- if (preg_match('/^[#0]+/', $format, $m)) {
- $format = str_replace($m[0], strlen($m[0]), $format);
- }
- $format = '%' . str_replace('%', 'f%%', $format);
-
- $value = sprintf($format, 100 * $value);
- }
- return $value;
- }
- /**
- * Search/replace values to convert Excel date/time format masks to PHP format masks
- *
- * @var array
- */
- private static $_dateFormatReplacements = array(
- // first remove escapes related to non-format characters
- '\\' => '',
- // 12-hour suffix
- 'am/pm' => 'A',
- // 4-digit year
- 'e' => 'Y',
- 'yyyy' => 'Y',
- // 2-digit year
- 'yy' => 'y',
- // first letter of month - no php equivalent
- 'mmmmm' => 'M',
- // full month name
- 'mmmm' => 'F',
- // short month name
- 'mmm' => 'M',
- // mm is minutes if time, but can also be month w/leading zero
- // so we try to identify times be the inclusion of a : separator in the mask
- // It isn't perfect, but the best way I know how
- ':mm' => ':i',
- 'mm:' => 'i:',
- 'mmi' => 'i',
- // month leading zero
- 'mm' => 'm',
- // month no leading zero
- 'm' => 'n',
- // full day of week name
- 'dddd' => 'l',
- // short day of week name
- 'ddd' => 'D',
- // days leading zero
- 'dd' => 'd',
- // days no leading zero
- 'd' => 'j',
- // seconds
- 'ss' => 's',
- // fractional seconds - no php equivalent
- '.s' => ''
- );
- /**
- * Search/replace values to convert Excel date/time format masks hours to PHP format masks (24 hr clock)
- *
- * @var array
- */
- private static $_dateFormatReplacements24 = array(
- 'hh' => 'H',
- 'h' => 'G'
- );
- /**
- * Search/replace values to convert Excel date/time format masks hours to PHP format masks (12 hr clock)
- *
- * @var array
- */
- private static $_dateFormatReplacements12 = array(
- 'hh' => 'h',
- 'h' => 'g'
- );
-
- private function _formatAsDate(&$value, &$format)
- {
- // dvc: convert Excel formats to PHP date formats
-
- // strip off first part containing e.g. [$-F800] or [$USD-409]
- // general syntax: [$<Currency string>-<language info>]
- // language info is in hexadecimal
- $format = preg_replace('/^(\[\$[A-Z]*-[0-9A-F]*\])/i', '', $format);
-
- // OpenOffice.org uses upper-case number formats, e.g. 'YYYY', convert to lower-case
- $format = strtolower($format);
- $format = strtr($format,self::$_dateFormatReplacements);
- if (strpos($format,'A') === false) { // 24-hour time format
- $format = strtr($format,self::$_dateFormatReplacements24);
- } else { // 12-hour time format
- $format = strtr($format,self::$_dateFormatReplacements12);
- }
- $dateTime = $this->ExcelToPHP($value);
- $days = floor($dateTime / 86400);
- $time = round((($dateTime / 86400) - $days) * 86400);
- $hours = round($time / 3600);
- $minutes = round($time / 60) - ($hours * 60);
- $seconds = round($time) - ($hours * 3600) - ($minutes * 60);
- $dateObj = date_create('1-Jan-1970+'.$days.' days');
- $dateObj->setTime($hours,$minutes,$seconds);
- return $dateObj->format($format);
- }
- private function ExcelToPHP($dateValue = 0) {
- if ($this->_excelBaseDate == 1900) {
- $my_excelBaseDate = 25569;
- // Adjust for the spurious 29-Feb-1900 (Day 60)
- if ($dateValue < 60) {
- --$my_excelBaseDate;
- }
- } else {
- $my_excelBaseDate = 24107;
- }
- // Perform conversion
- if ($dateValue >= 1) {
- $utcDays = $dateValue - $my_excelBaseDate;
- $returnValue = round($utcDays * 86400);
- if (($returnValue <= PHP_INT_MAX) && ($returnValue >= -PHP_INT_MAX)) {
- $returnValue = (integer) $returnValue;
- }
- } else {
- $hours = round($dateValue * 24);
- $mins = round($dateValue * 1440) - round($hours * 60);
- $secs = round($dateValue * 86400) - round($hours * 3600) - round($mins * 60);
- $returnValue = (integer) gmmktime($hours, $mins, $secs);
- }
- // Return
- return $returnValue;
- }
- /**
- * Read BOF
- */
- private function _readBof() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
-
- $this->_pos += 4 + $length; // move stream pointer to next record
- $substreamType = self::_GetInt2d($recordData, 2); // offset: 2; size: 2; type of the following data
- switch ($substreamType) {
- case self::XLS_WorkbookGlobals:
- $version = self::_GetInt2d($recordData, 0);
- if (($version != self::XLS_BIFF8) && ($version != self::XLS_BIFF7)) {
- die('Cannot read this Excel file. Version is too old.');
- }
- $this->_version = $version;
- break;
- case self::XLS_Worksheet:
- // do not use this version information for anything
- // it is unreliable (OpenOffice doc, 5.8), use only version information from the global stream
- break;
- default:
- // substream, e.g. chart. just skip the entire substream
- do {
- $code = self::_GetInt2d($this->_data, $this->_pos);
- $this->_readDefault();
- } while ($code != self::XLS_Type_EOF && $this->_pos < $this->_dataSize);
- break;
- }
- }
- /**
- * Read Sheet
- */
- private function _readSheet() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $rec_offset = self::_GetInt4d($this->_data, $this->_pos + 4); // offset: 0; size: 4; absolute stream position of the BOF record of the sheet
- $this->_pos += 4 + $length; // move stream pointer to next record
- // offset: 6; size: var; sheet name
- if ($this->_version == self::XLS_BIFF8) {
- $string = self::_readUnicodeStringShort(substr($recordData, 6));
- $rec_name = $string['value'];
- } elseif ($this->_version == self::XLS_BIFF7) {
- $string = self::_readByteStringShort(substr($recordData, 6));
- $rec_name = $string['value'];
- }
- $this->_sheets[] = array(
- 'name' => $rec_name,
- 'offset' => $rec_offset
- );
- }
- /**
- * Reads a general type of BIFF record. Does nothing except for moving stream pointer forward to next record.
- */
- private function _readDefault() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $this->_pos += 4 + $length; // move stream pointer to next record
- }
- /**
- * CODEPAGE
- *
- * This record stores the text encoding used to write byte
- * strings, stored as MS Windows code page identifier.
- */
- private function _readCodepage() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $this->_pos += 4 + $length;
- $codepage = self::_GetInt2d($recordData, 0);
- self::$_codepage = self::NumberToName($codepage);
- }
- /**
- * DATEMODE
- *
- * This record specifies the base date for displaying date values. All dates are stored as count of days past this base date.
- * In BIFF2-BIFF4 this record is part of the Calculation Settings Block. In BIFF5-BIFF8 it is stored in the Workbook Globals Substream.
- */
- private function _readDateMode() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $this->_pos += 4 + $length;
- if (ord($recordData{0}) == 1) {
- $this->_excelBaseDate = 1904;
- }
- else{
- $this->_excelBaseDate = 1900;
- }
- }
- /**
- * data format
- */
- private function _readFormat(){
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
-
- $this->_pos += 4 + $length;
- $indexCode = self::_GetInt2d($recordData, 0);
- if ($this->_version == self::XLS_BIFF8) {
- $string = str_replace('"', '', self::_readUnicodeStringLong(substr($recordData, 2)));
- } else {
- // BIFF7
- $string = self::_readByteStringShort(substr($recordData, 2));
- }
- $formatString = $string['value'];
- $this->formatRecords[$indexCode] = $formatString;
- }
- /**
- * XF - Extended Format
- *
- * This record contains formatting information for cells, rows, columns or styles.
- * According to http://support.microsoft.com/kb/147732 there are always at least 15 cell style XF and 1 cell XF.
- * Inspection of Excel files generated by MS Office Excel shows that XF records 0-14 are cell style XF and XF record 15 is a cell XF
- * We only read the first cell style XF and skip the remaining cell style XF records
- */
- private function _readXf() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $this->_pos += 4 + $length;
- $indexCode = self::_GetInt2d($recordData, 2);
- if (isset($this->formatRecords[$indexCode])) {
- $format = $this->formatRecords[$indexCode];
- }
- else if (isset($this->builtInFormats[$indexCode])) {
- $format = $this->builtInFormats[$indexCode];
- }
- else {
- $format = 'General';
- }
- $this->xfRecords[] = array(
- 'index' => $indexCode,
- 'format' => $format
- );
- }
- /**
- * SST - Shared String Table
- *
- * This record contains a list of all strings used anywherein the workbook. Each string occurs only once. The
- * workbook uses indexes into the list to reference the strings.
- **/
- private function _readSst() {
- $pos = 0; // offset within (spliced) record data
- $splicedRecordData = $this->_getSplicedRecordData(); // get spliced record data
- $recordData = $splicedRecordData['recordData'];
- $spliceOffsets = $splicedRecordData['spliceOffsets'];
- $pos += 4; // offset: 0; size: 4; total number of strings in the workbook
- $nm = self::_GetInt4d($recordData, 4); // offset: 4; size: 4; number of following strings ($nm)
- $pos += 4;
- for ($i = 0; $i < $nm; ++$i) { // loop through the Unicode strings (16-bit length)
- $numChars = self::_GetInt2d($recordData, $pos); // number of characters in the Unicode string
- $pos += 2;
- $optionFlags = ord($recordData{$pos}); // option flags
- ++$pos;
- $isCompressed = (($optionFlags & 0x01) == 0) ; // bit: 0; mask: 0x01; 0 = compressed; 1 = uncompressed
- $hasAsian = (($optionFlags & 0x04) != 0); // bit: 2; mask: 0x02; 0 = ordinary; 1 = Asian phonetic
- $hasRichText = (($optionFlags & 0x08) != 0); // bit: 3; mask: 0x03; 0 = ordinary; 1 = Rich-Text
- if ($hasRichText) {
- $formattingRuns = self::_GetInt2d($recordData, $pos); // number of Rich-Text formatting runs
- $pos += 2;
- }
- if ($hasAsian) {
- $extendedRunLength = self::_GetInt4d($recordData, $pos); // size of Asian phonetic setting
- $pos += 4;
- }
- $len = ($isCompressed) ? $numChars : $numChars * 2; // expected byte length of character array if not split
- foreach ($spliceOffsets as $spliceOffset) { // look up limit position
- if ($pos <= $spliceOffset) { // it can happen that the string is empty, therefore we need. <= and not just <
- $limitpos = $spliceOffset;
- break;
- }
- }
- if ($pos + $len <= $limitpos) {
- $retstr = substr($recordData, $pos, $len); // character array is not split between records
- $pos += $len;
- } else {
- $retstr = substr($recordData, $pos, $limitpos - $pos); // character array is split between records. first part of character array
- $bytesRead = $limitpos - $pos;
- $charsLeft = $numChars - (($isCompressed) ? $bytesRead : ($bytesRead / 2)); // remaining characters in Unicode string
- $pos = $limitpos;
- // keep reading the characters
- while ($charsLeft > 0) {
- // look up next limit position, in case the string span more than one continue record
- foreach ($spliceOffsets as $spliceOffset) {
- if ($pos < $spliceOffset) {
- $limitpos = $spliceOffset;
- break;
- }
- }
- // repeated option flags. OpenOffice.org documentation 5.21
- $option = ord($recordData{$pos});
- ++$pos;
- if ($isCompressed && ($option == 0)) {
- // 1st fragment compressed. this fragment compressed
- $len = min($charsLeft, $limitpos - $pos);
- $retstr .= substr($recordData, $pos, $len);
- $charsLeft -= $len;
- $isCompressed = true;
- } elseif (!$isCompressed && ($option != 0)) {
- // 1st fragment uncompressed. this fragment uncompressed
- $len = min($charsLeft * 2, $limitpos - $pos);
- $retstr .= substr($recordData, $pos, $len);
- $charsLeft -= $len / 2;
- $isCompressed = false;
- } elseif (!$isCompressed && ($option == 0)) {
- // 1st fragment uncompressed. this fragment compressed
- $len = min($charsLeft, $limitpos - $pos);
- for ($j = 0; $j < $len; ++$j) {
- $retstr .= $recordData{$pos + $j} . chr(0);
- }
- $charsLeft -= $len;
- $isCompressed = false;
- } else {
- // 1st fragment compressed. this fragment uncompressed
- $newstr = '';
- for ($j = 0; $j < strlen($retstr); ++$j) {
- $newstr .= $retstr[$j] . chr(0);
- }
- $retstr = $newstr;
- $len = min($charsLeft * 2, $limitpos - $pos);
- $retstr .= substr($recordData, $pos, $len);
- $charsLeft -= $len / 2;
- $isCompressed = false;
- }
- $pos += $len;
- }
- }
- $retstr = self::_encodeUTF16($retstr, $isCompressed); // convert to UTF-8
- $fmtRuns = array(); // read additional Rich-Text information, if any
- if ($hasRichText) {
- // list of formatting runs
- for ($j = 0; $j < $formattingRuns; ++$j) {
- $charPos = self::_GetInt2d($recordData, $pos + $j * 4); // first formatted character; zero-based
- $fontIndex = self::_GetInt2d($recordData, $pos + 2 + $j * 4); // index to font record
- $fmtRuns[] = array(
- 'charPos' => $charPos,
- 'fontIndex' => $fontIndex
- );
- }
- $pos += 4 * $formattingRuns;
- }
- // read additional Asian phonetics information, if any
- if ($hasAsian) {
- $pos += $extendedRunLength; // For Asian phonetic settings, we skip the extended string data
- }
- // store the shared sting
- $this->_sst[] = array(
- 'value' => $retstr,
- 'fmtRuns' => $fmtRuns
- );
- }
- }
- /**
- * Read RK record
- * This record represents a cell that contains an RK value (encoded integer or floating-point value). If a floating-point value
- * cannot be encoded to an RK value, a NUMBER record will be written. This record replaces the record INTEGER written in BIFF2.
- */
- private function _readRk() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $this->_pos += 4 + $length;
- $row = self::_GetInt2d($recordData, 0);
- $column = self::_GetInt2d($recordData, 2);
- $xfIndex = self::_GetInt2d($recordData, 4);
- $rknum = self::_GetInt4d($recordData, 6);
- $numValue = self::_GetIEEE754($rknum);
- // add cell
- $this->_addCell($row, $column, $numValue, $xfIndex);
- }
- /**
- * Read LABELSST record This record represents a cell that contains a string. It
- * replaces the LABEL record and RSTRING record used in BIFF2-BIFF5.
- */
- private function _readLabelSst() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $this->_pos += 4 + $length;
- $xfIndex = self::_GetInt2d($recordData, 4);
- $row = self::_GetInt2d($recordData, 0);
- $column = self::_GetInt2d($recordData, 2);
- // offset: 6; size: 4; index to SST record
- $index = self::_GetInt4d($recordData, 6);
- $this->_addCell($row, $column, $this->_sst[$index]['value'], $xfIndex);
- }
- /**
- * Read MULRK record
- * This record represents a cell range containing RK value cells. All cells are located in the same row.
- */
- private function _readMulRk() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $this->_pos += 4 + $length;
- $row = self::_GetInt2d($recordData, 0);
- $colFirst = self::_GetInt2d($recordData, 2);
- $colLast = self::_GetInt2d($recordData, $length - 2);
- $columns = $colLast - $colFirst + 1;
- // offset within record data
- $offset = 4;
- for ($i = 0; $i < $columns; ++$i) {
- $xfIndex = self::_GetInt2d($recordData, $offset);
- $numValue = self::_GetIEEE754(self::_GetInt4d($recordData, $offset + 2));
- $this->_addCell($row, $colFirst + $i, $numValue, $xfIndex);
- $offset += 6;
- }
- }
- /**
- * Read NUMBER record
- * This record represents a cell that contains a floating-point value.
- */
- private function _readNumber() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $this->_pos += 4 + $length;
- $row = self::_GetInt2d($recordData, 0);
- $column = self::_GetInt2d($recordData, 2);
- $xfIndex = self::_GetInt2d($recordData, 4);
- $numValue = self::_extractNumber(substr($recordData, 6, 8));
- $this->_addCell($row, $column, $numValue, $xfIndex);
- }
- /**
- * Read FORMULA record + perhaps a following STRING record if formula result is a string
- * This record contains the token array and the result of a formula cell.
- */
- private function _readFormula() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $this->_pos += 4 + $length;
- $xfIndex = self::_GetInt2d($recordData, 4);
- $row = self::_GetInt2d($recordData, 0);
- $column = self::_GetInt2d($recordData, 2);
- if ((ord($recordData{6}) == 0) && (ord($recordData{12}) == 255) && (ord($recordData{13}) == 255)) {
- $this->_preRow = $row;
- $this->_preColumn = $column;
- return false;
- }
- elseif ((ord($recordData{6}) == 1) && (ord($recordData{12}) == 255) && (ord($recordData{13}) == 255)) {
- // Boolean formula. Result is in +2; 0=false, 1=true
- $value = (bool) ord($recordData{8});
- }
- elseif ((ord($recordData{6}) == 2) && (ord($recordData{12}) == 255) && (ord($recordData{13}) == 255)) {
- // Error formula. Error code is in +2
- $value = self::_mapErrorCode(ord($recordData{8}));
- }
- elseif ((ord($recordData{6}) == 3) && (ord($recordData{12}) == 255) && (ord($recordData{13}) == 255)) {
- // Formula result is a null string
- $value = '';
- }
- else {
- // forumla result is a number, first 14 bytes like _NUMBER record
- $value = self::_extractNumber(substr($recordData, 6, 8));
- }
- $this->_addCell($row, $column, $value, $xfIndex);
- }
- /**
- * Read a STRING record from current stream position and advance the stream pointer to next record
- * This record is used for storing result from FORMULA record when it is a string, and it occurs directly after the FORMULA record
- *
- * @return string The string contents as UTF-8
- */
- private function _readString() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $this->_pos += 4 + $length;
- $xfIndex = self::_GetInt2d($recordData, 4);
- if ($this->_version == self::XLS_BIFF8) {
- $string = self::_readUnicodeStringLong($recordData);
- $value = $string['value'];
- } else {
- $string = self::_readByteStringLong($recordData);
- $value = $string['value'];
- }
- $this->_addCell($this->_preRow, $this->_preColumn, $value, $xfIndex);
- }
- /**
- * Read BOOLERR record
- * This record represents a Boolean value or error value cell.
- */
- private function _readBoolErr() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $this->_pos += 4 + $length;
- $xfIndex = self::_GetInt2d($recordData, 4);
- $row = self::_GetInt2d($recordData, 0);
- $column = self::_GetInt2d($recordData, 2);
- // offset: 6; size: 1; the boolean value or error value
- $boolErr = ord($recordData{6});
- // offset: 7; size: 1; 0=boolean; 1=error
- $isError = ord($recordData{7});
- switch ($isError) {
- case 0: // boolean
- $value = (bool) $boolErr;
- // add cell value
- $this->_addCell($row, $column, $value, $xfIndex);
- break;
- case 1: // error type
- $value = self::_mapErrorCode($boolErr);
- // add cell value
- $this->_addCell($row, $column, $value, $xfIndex);
- break;
- }
- }
- /**
- * Read LABEL record
- * This record represents a cell that contains a string. In BIFF8 it is usually replaced by the LABELSST record.
- * Excel still uses this record, if it copies unformatted text cells to the clipboard.
- */
- private function _readLabel() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $this->_pos += 4 + $length;
- $xfIndex = self::_GetInt2d($recordData, 4);
- $row = self::_GetInt2d($recordData, 0);
- $column = self::_GetInt2d($recordData, 2);
- if ($this->_version == self::XLS_BIFF8) {
- $string = self::_readUnicodeStringLong(substr($recordData, 6));
- $value = $string['value'];
- } else {
- $string = self::_readByteStringLong(substr($recordData, 6));
- $value = $string['value'];
- }
- $this->_addCell($row, $column, $value, $xfIndex);
- }
- /**
- * Read BLANK record
- */
- private function _readBlank() {
- $length = self::_GetInt2d($this->_data, $this->_pos + 2);
- $recordData = substr($this->_data, $this->_pos + 4, $length);
- $this->_pos += 4 + $length;
- $xfIndex = self::_GetInt2d($recordData, 4);
- $row = self::_GetInt2d($recordData, 0);
- $column = self::_GetInt2d($recordData, 2);
- $this->_addCell($row, $column, '', $xfIndex);
- }
- /**
- * Reads a record from current position in data stream and continues reading data as long as CONTINUE
- * records are found. Splices the record data pieces and returns the combined string as if record data is in one piece.
- * Moves to next current position in data stream to start of next record different from a CONtINUE record
- *
- * @return array
- */
- private function _getSplicedRecordData() {
- $data = '';
- $spliceOffsets = array();
- $i = 0;
- $spliceOffsets[0] = 0;
- do {
- ++$i;
- $identifier = self::_GetInt2d($this->_data, $this->_pos); // offset: 0; size: 2; identifier
- $length = self::_GetInt2d($this->_data, $this->_pos + 2); // offset: 2; size: 2; length
- $data .= substr($this->_data, $this->_pos + 4, $length);
- $spliceOffsets[$i] = $spliceOffsets[$i - 1] + $length;
- $this->_pos += 4 + $length;
- $nextIdentifier = self::_GetInt2d($this->_data, $this->_pos);
- } while ($nextIdentifier == self::XLS_Type_CONTINUE);
- $splicedData = array(
- 'recordData' => $data,
- 'spliceOffsets' => $spliceOffsets,
- );
- return $splicedData;
- }
- /**
- * Read byte string (16-bit string length)
- * OpenOffice documentation: 2.5.2
- *
- * @param string $subData
- * @return array
- */
- private static function _readByteStringLong($subData) {
- // offset: 0; size: 2; length of the string (character count)
- $ln = self::_GetInt2d($subData, 0);
- // offset: 2: size: var; character array (8-bit characters)
- $value = self::_decodeCodepage(substr($subData, 2));
- //return $string;
- return array(
- 'value' => $value,
- 'size' => 2 + $ln, // size in bytes of data structure
- );
- }
- /**
- * Map error code, e.g. '#N/A'
- *
- * @param int $subData
- * @return string
- */
- private static function _mapErrorCode($subData) {
- switch ($subData) {
- case 0x00: return '#NULL!'; break;
- case 0x07: return '#DIV/0!'; break;
- case 0x0F: return '#VALUE!'; break;
- case 0x17: return '#REF!'; break;
- case 0x1D: return '#NAME?'; break;
- case 0x24: return '#NUM!'; break;
- case 0x2A: return '#N/A'; break;
- default: return false;
- }
- }
- /**
- * Convert Microsoft Code Page Identifier to Code Page Name which iconv
- * and mbstring understands
- *
- * @param integer $codePage Microsoft Code Page Indentifier
- * @return string Code Page Name
- */
- private static function NumberToName($codePage = 1252) {
- switch ($codePage) {
- case 367: return 'ASCII'; break; // ASCII
- case 437: return 'CP437'; break; // OEM US
- //case 720: throw new PHPExcel_Exception('Code page 720 not supported.'); break; // OEM Arabic
- case 737: return 'CP737'; break; // OEM Greek
- case 775: return 'CP775'; break; // OEM Baltic
- case 850: return 'CP850'; break; // OEM Latin I
- case 852: return 'CP852'; break; // OEM Latin II (Central European)
- case 855: return 'CP855'; break; // OEM Cyrillic
- case 857: return 'CP857'; break; // OEM Turkish
- case 858: return 'CP858'; break; // OEM Multilingual Latin I with Euro
- case 860: return 'CP860'; break; // OEM Portugese
- case 861: return 'CP861'; break; // OEM Icelandic
- case 862: return 'CP862'; break; // OEM Hebrew
- case 863: return 'CP863'; break; // OEM Canadian (French)
- case 864: return 'CP864'; break; // OEM Arabic
- case 865: return 'CP865'; break; // OEM Nordic
- case 866: return 'CP866'; break; // OEM Cyrillic (Russian)
- case 869: return 'CP869'; break; // OEM Greek (Modern)
- case 874: return 'CP874'; break; // ANSI Thai
- case 932: return 'CP932'; break; // ANSI Japanese Shift-JIS
- case 936: return 'CP936'; break; // ANSI Chinese Simplified GBK
- case 949: return 'CP949'; break; // ANSI Korean (Wansung)
- case 950: return 'CP950'; break; // ANSI Chinese Traditional BIG5
- case 1200: return 'UTF-16LE'; break; // UTF-16 (BIFF8)
- case 1250: return 'CP1250'; break; // ANSI Latin II (Central European)
- case 1251: return 'CP1251'; break; // ANSI Cyrillic
- case 0: // CodePage is not always correctly set when the xls file was saved by Apple's Numbers program
- case 1252: return 'CP1252'; break; // ANSI Latin I (BIFF4-BIFF7)
- case 1253: return 'CP1253'; break; // ANSI Greek
- case 1254: return 'CP1254'; break; // ANSI Turkish
- case 1255: return 'CP1255'; break; // ANSI Hebrew
- case 1256: return 'CP1256'; break; // ANSI Arabic
- case 1257: return 'CP1257'; break; // ANSI Baltic
- case 1258: return 'CP1258'; break; // ANSI Vietnamese
- case 1361: return 'CP1361'; break; // ANSI Korean (Johab)
- case 10000: return 'MAC'; break; // Apple Roman
- case 10006: return 'MACGREEK'; break; // Macintosh Greek
- case 10007: return 'MACCYRILLIC'; break; // Macintosh Cyrillic
- case 10008: return 'CP936'; break; // Macintosh - Simplified Chinese (GB 2312)
- case 10029: return 'MACCENTRALEUROPE'; break; // Macintosh Central Europe
- case 10079: return 'MACICELAND'; break; // Macintosh Icelandic
- case 10081: return 'MACTURKISH'; break; // Macintosh Turkish
- case 32768: return 'MAC'; break; // Apple Roman
- //case 32769: throw new PHPExcel_Exception('Code page 32769 not supported.'); break; // ANSI Latin I (BIFF2-BIFF3)
- case 65000: return 'UTF-7'; break; // Unicode (UTF-7)
- case 65001: return 'UTF-8'; break; // Unicode (UTF-8)
- default: return 'UTF-8'; break;
- }
- }
- /**
- * String from columnindex
- *
- * @param int $pColumnIndex
- * @return string
- */
- private static function _stringFromColumnIndex($pColumnIndex = 0) {
- static $_indexCache = array();
- if ( ! isset($_indexCache[$pColumnIndex])) {
- if ($pColumnIndex < 26) {
- $_indexCache[$pColumnIndex] = chr(65 + $pColumnIndex);
- } elseif ($pColumnIndex < 702) {
- $_indexCache[$pColumnIndex] = chr(64 + ($pColumnIndex / 26)) . chr(65 + $pColumnIndex % 26);
- } else {
- $_indexCache[$pColumnIndex] = chr(64 + (($pColumnIndex - 26) / 676)) . chr(65 + ((($pColumnIndex - 26) % 676) / 26)) . chr(65 + $pColumnIndex % 26);
- }
- }
- return $_indexCache[$pColumnIndex];
- }
- /**
- * Extracts an Excel Unicode short string (8-bit string length)
- * OpenOffice documentation: 2.5.3
- * function will automatically find out where the Unicode string ends.
- *
- * @param string $subData
- * @return array
- */
- private static function _readUnicodeStringShort($subData) {
- $characterCount = ord($subData[0]); // offset: 0: size: 1; length of the string (character count)
- $string = self::_readUnicodeString(substr($subData, 1), $characterCount);
- $string['size'] += 1; // add 1 for the string length
- return $string;
- }
- /**
- * Read byte string (8-bit string length)
- * OpenOffice documentation: 2.5.2
- *
- * @param string $subData
- * @return array
- */
- private static function _readByteStringShort($subData) {
- $ln = ord($subData[0]); // offset: 0; size: 1; length of the string (character count)
- $value = self::_decodeCodepage(substr($subData, 1, $ln)); // offset: 1: size: var; character array (8-bit characters)
-
- return array(
- 'value' => $value,
- 'size' => 1 + $ln, // size in bytes of data structure
- );
- }
- /**
- * Extracts an Excel Unicode long string (16-bit string length)
- * OpenOffice documentation: 2.5.3. this function is under construction, needs to support rich text, and Asian phonetic settings
- *
- * @param string $subData
- * @return array
- */
- private static function _readUnicodeStringLong($subData) {
- $value = '';
- // offset: 0: size: 2; length of the string (character count)
- $characterCount = self::_GetInt2d($subData, 0);
- $string = self::_readUnicodeString(substr($subData, 2), $characterCount);
- // add 2 for the string length
- $string['size'] += 2;
- return $string;
- }
- /**
- * Read Unicode string with no string length field, but with known character count
- * this function is under construction, needs to support rich text, and Asian phonetic settings
- * OpenOffice.org's Documentation of the Microsoft Excel File Format, section 2.5.3
- *
- * @param string $subData
- * @param int $characterCount
- * @return array
- */
- private static function _readUnicodeString($subData, $characterCount) {
- $isCompressed = !((0x01 & ord($subData[0])) >> 0); // bit: 0; mask: 0x01; character compression (0 = compressed 8-bit, 1 = uncompressed 16-bit)
- $hasAsian = (0x04) & ord($subData[0]) >> 2; // bit: 2; mask: 0x04; Asian phonetic settings
- $hasRichText = (0x08) & ord($subData[0]) >> 3; // bit: 3; mask: 0x08; Rich-Text settings
- // offset: 1: size: var; character array
- // this offset assumes richtext and Asian phonetic settings are off which is generally wrong
- // needs to be fixed
- $value = self::_encodeUTF16(substr($subData, 1, $isCompressed ? $characterCount : 2 * $characterCount), $isCompressed);
- return array(
- 'value' => $value,
- 'size' => $isCompressed ? 1 + $characterCount : 1 + 2 * $characterCount, // the size in bytes including the option flags
- );
- }
- /**
- * Get UTF-8 string from (compressed or uncompressed) UTF-16 string
- *
- * @param string $string
- * @param bool $compressed
- * @return string
- */
- private static function _encodeUTF16($string, $compressed = '') {
- if ($compressed) {
- $string = self::_uncompressByteString($string);
- }
- return mb_convert_encoding($string, 'UTF-8', 'UTF-16LE');
- }
- /**
- * Convert string to UTF-8. Only used for BIFF5.
- *
- * @param string $string
- * @return string
- */
- private static function _decodeCodepage($string) {
- return mb_convert_encoding($string, 'UTF-8', self::$_codepage);
- }
- /**
- * Convert UTF-16 string in compressed notation to uncompressed form. Only used for BIFF8.
- *
- * @param string $string
- * @return string
- */
- private static function _uncompressByteString($string) {
- $uncompressedString = '';
- $strLen = strlen($string);
- for ($i = 0; $i < $strLen; ++$i) {
- $uncompressedString .= $string[$i] . "\0";
- }
- return $uncompressedString;
- }
- /**
- * Read 16-bit unsigned integer
- *
- * @param string $data
- * @param int $pos
- * @return int
- */
- private static function _GetInt2d($data, $pos) {
- return ord($data[$pos]) | (ord($data[$pos+1]) << 8);
- }
- /**
- * Read 32-bit signed integer
- * FIX: represent numbers correctly on 64-bit system. Hacked by Andreas Rehm 2006 to ensure correct result of the <<24 block on 32 and 64bit systems
- * http://sourceforge.net/tracker/index.php?func=detail&aid=1487372&group_id=99160&atid=623334
- *
- * @param string $data
- * @param int $pos
- * @return int
- */
- private static function _GetInt4d($data, $pos) {
- $_or_24 = ord($data[$pos + 3]);
- if ($_or_24 >= 128) {
- $_ord_24 = -abs((256 - $_or_24) << 24); // negative number
- } else {
- $_ord_24 = ($_or_24 & 127) << 24;
- }
- return ord($data[$pos]) | (ord($data[$pos+1]) << 8) | (ord($data[$pos+2]) << 16) | $_ord_24;
- }
- /**
- * Reads first 8 bytes of a string and return IEEE 754 float
- *
- * @param string $data Binary string that is at least 8 bytes long
- * @return float
- */
- private static function _extractNumber($data) {
- $rknumhigh = self::_GetInt4d($data, 4);
- $rknumlow = self::_GetInt4d($data, 0);
- $sign = ($rknumhigh & 0x80000000) >> 31;
- $exp = (($rknumhigh & 0x7ff00000) >> 20) - 1023;
- $mantissa = (0x100000 | ($rknumhigh & 0x000fffff));
- $mantissalow1 = ($rknumlow & 0x80000000) >> 31;
- $mantissalow2 = ($rknumlow & 0x7fffffff);
- $value = $mantissa / pow( 2 , (20 - $exp));
- if ($mantissalow1 != 0) {
- $value += 1 / pow (2 , (21 - $exp));
- }
- $value += $mantissalow2 / pow (2 , (52 - $exp));
- if ($sign) {
- $value *= -1;
- }
- return $value;
- }
- private static function _GetIEEE754($rknum) {
- if (($rknum & 0x02) != 0) {
- $value = $rknum >> 2;
- } else {
- // changes by mmp, info on IEEE754 encoding from
- // research.microsoft.com/~hollasch/cgindex/coding/ieeefloat.html
- // The RK format calls for using only the most significant 30 bits
- // of the 64 bit floating point value. The other 34 bits are assumed
- // to be 0 so we use the upper 30 bits of $rknum as follows...
- $sign = ($rknum & 0x80000000) >> 31;
- $exp = ($rknum & 0x7ff00000) >> 20;
- $mantissa = (0x100000 | ($rknum & 0x000ffffc));
- $value = $mantissa / pow( 2 , (20- ($exp - 1023)));
- if ($sign) {
- $value = -1 * $value;
- }
- //end of changes by mmp
- }
- if (($rknum & 0x01) != 0) {
- $value /= 100;
- }
- return $value;
- }
- }
|