_readDataOnly; } /** * Set read data only * * @param boolean $pValue * @return PHPExcel_Reader_Gnumeric */ public function setReadDataOnly($pValue = false) { $this->_readDataOnly = $pValue; return $this; } /** * Get which sheets to load * * @return mixed */ public function getLoadSheetsOnly() { return $this->_loadSheetsOnly; } /** * Set which sheets to load * * @param mixed $value * @return PHPExcel_Reader_Gnumeric */ public function setLoadSheetsOnly($value = null) { $this->_loadSheetsOnly = is_array($value) ? $value : array($value); return $this; } /** * Set all sheets to load * * @return PHPExcel_Reader_Gnumeric */ public function setLoadAllSheets() { $this->_loadSheetsOnly = null; return $this; } /** * Read filter * * @return PHPExcel_Reader_IReadFilter */ public function getReadFilter() { return $this->_readFilter; } /** * Set read filter * * @param PHPExcel_Reader_IReadFilter $pValue * @return PHPExcel_Reader_Gnumeric */ public function setReadFilter(PHPExcel_Reader_IReadFilter $pValue) { $this->_readFilter = $pValue; return $this; } /** * Create a new PHPExcel_Reader_Gnumeric */ public function __construct() { $this->_sheetIndex = 0; $this->_readFilter = new PHPExcel_Reader_DefaultReadFilter(); $this->_referenceHelper = PHPExcel_ReferenceHelper::getInstance(); } /** * Can the current PHPExcel_Reader_IReader read the file? * * @param string $pFileName * @return boolean */ public function canRead($pFilename) { // Check if zip class exists if (!function_exists('gzread')) { return false; } // Check if file exists if (!file_exists($pFilename)) { throw new Exception("Could not open " . $pFilename . " for reading! File does not exist."); } return true; } /** * Loads PHPExcel from file * * @param string $pFilename * @return PHPExcel * @throws Exception */ public function load($pFilename) { // Create new PHPExcel $objPHPExcel = new PHPExcel(); // Load into this instance return $this->loadIntoExisting($pFilename, $objPHPExcel); } private static function identifyFixedStyleValue($styleList,&$styleAttributeValue) { $styleAttributeValue = strtolower($styleAttributeValue); foreach($styleList as $style) { if ($styleAttributeValue == strtolower($style)) { $styleAttributeValue = $style; return true; } } return false; } private function _gzfileGetContents($filename) { $file = @gzopen($filename, 'rb'); if ($file !== false) { $data = ''; while (!gzeof($file)) { $data .= gzread($file, 1024); } gzclose($file); } return $data; } /** * Loads PHPExcel from file into PHPExcel instance * * @param string $pFilename * @param PHPExcel $objPHPExcel * @return PHPExcel * @throws Exception */ public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel) { // Check if file exists if (!file_exists($pFilename)) { throw new Exception("Could not open " . $pFilename . " for reading! File does not exist."); } $timezoneObj = new DateTimeZone('Europe/London'); $GMT = new DateTimeZone('UTC'); $gFileData = $this->_gzfileGetContents($pFilename); // echo '
';
//		echo htmlentities($gFileData);
//		echo '

'; // $xml = simplexml_load_string($gFileData); $namespacesMeta = $xml->getNamespaces(true); // var_dump($namespacesMeta); // $gnmXML = $xml->children($namespacesMeta['gnm']); $officeXML = $xml->children($namespacesMeta['office']); $officeDocXML = $officeXML->{'document-meta'}; $officeDocMetaXML = $officeDocXML->meta; $docProps = $objPHPExcel->getProperties(); foreach($officeDocMetaXML as $officePropertyData) { $officePropertyDC = array(); if (isset($namespacesMeta['dc'])) { $officePropertyDC = $officePropertyData->children($namespacesMeta['dc']); } foreach($officePropertyDC as $propertyName => $propertyValue) { $propertyValue = (string) $propertyValue; switch ($propertyName) { case 'title' : $docProps->setTitle(trim($propertyValue)); break; case 'subject' : $docProps->setSubject(trim($propertyValue)); break; case 'creator' : $docProps->setCreator(trim($propertyValue)); break; case 'date' : $creationDate = strtotime(trim($propertyValue)); $docProps->setCreated($creationDate); break; case 'description' : $docProps->setDescription(trim($propertyValue)); break; } } $officePropertyMeta = array(); if (isset($namespacesMeta['meta'])) { $officePropertyMeta = $officePropertyData->children($namespacesMeta['meta']); } foreach($officePropertyMeta as $propertyName => $propertyValue) { $attributes = $propertyValue->attributes($namespacesMeta['meta']); $propertyValue = (string) $propertyValue; switch ($propertyName) { case 'keyword' : $docProps->setKeywords(trim($propertyValue)); break; case 'initial-creator' : $docProps->setCreator(trim($propertyValue)); break; case 'creation-date' : $creationDate = strtotime(trim($propertyValue)); $docProps->setCreated($creationDate); break; case 'user-defined' : list(,$attrName) = explode(':',$attributes['name']); switch ($attrName) { case 'publisher' : $docProps->setCompany(trim($propertyValue)); break; case 'category' : $docProps->setCategory(trim($propertyValue)); break; case 'manager' : $docProps->setManager(trim($propertyValue)); break; } break; } } } $worksheetID = 0; foreach($gnmXML->Sheets->Sheet as $sheet) { $worksheetName = (string) $sheet->Name; // echo 'Worksheet: ',$worksheetName,'
'; if ((isset($this->_loadSheetsOnly)) && (!in_array($worksheetName, $this->_loadSheetsOnly))) { continue; } // Create new Worksheet $objPHPExcel->createSheet(); $objPHPExcel->setActiveSheetIndex($worksheetID); $objPHPExcel->getActiveSheet()->setTitle($worksheetName); foreach($sheet->Cells->Cell as $cell) { $cellAttributes = $cell->attributes(); $row = (string) $cellAttributes->Row + 1; $column = PHPExcel_Cell::stringFromColumnIndex($cellAttributes->Col); // Read cell? if (!is_null($this->getReadFilter())) { if (!$this->getReadFilter()->readCell($column, $row, $worksheetName)) { continue; } } $ValueType = $cellAttributes->ValueType; $ExprID = (string) $cellAttributes->ExprID; // echo 'Cell ',$column,$row,'
'; // echo 'Type is ',$ValueType,'
'; // echo 'Value is ',$cell,'
'; $type = PHPExcel_Cell_DataType::TYPE_FORMULA; if ($ExprID > '') { if (((string) $cell) > '') { $this->_expressions[$ExprID] = array( 'column' => $cellAttributes->Col, 'row' => $cellAttributes->Row, 'formula' => (string) $cell ); // echo 'NEW EXPRESSION ',$ExprID,'
'; } else { $expression = $this->_expressions[$ExprID]; $cell = $this->_referenceHelper->updateFormulaReferences( $expression['formula'], 'A1', $cellAttributes->Col - $expression['column'], $cellAttributes->Row - $expression['row'], $worksheetName ); // echo 'SHARED EXPRESSION ',$ExprID,'
'; // echo 'New Value is ',$cell,'
'; } } switch($ValueType) { case '20' : $type = PHPExcel_Cell_DataType::TYPE_BOOL; $cell = ($cell == 'TRUE') ? True : False; break; case '40' : $type = PHPExcel_Cell_DataType::TYPE_NUMERIC; break; case '60' : $type = PHPExcel_Cell_DataType::TYPE_STRING; break; } $objPHPExcel->getActiveSheet()->getCell($column.$row)->setValueExplicit($cell,$type); } if (isset($sheet->MergedRegions)) { foreach($sheet->MergedRegions->Merge as $mergeCells) { $objPHPExcel->getActiveSheet()->mergeCells($mergeCells); } } $worksheetID++; } // Return return $objPHPExcel; } /** * Get sheet index * * @return int */ public function getSheetIndex() { return $this->_sheetIndex; } /** * Set sheet index * * @param int $pValue Sheet index * @return PHPExcel_Reader_Gnumeric */ public function setSheetIndex($pValue = 0) { $this->_sheetIndex = $pValue; return $this; } }