| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- <?php
- /**
- * PHPExcelReader class
- * @version 1.0.0
- * @author Janson Leung
- */
- /** PHPExcel root directory */
- if (! defined('PHPEXCEL_ROOT')) {
- define('PHPEXCEL_ROOT', dirname(__FILE__) . '/');
- require(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php');
- }
- class PHPExcelReader implements SeekableIterator, Countable {
- const TYPE_XLSX = 'XLSX';
- const TYPE_XLS = 'XLS';
- const TYPE_CSV = 'CSV';
- private $handle;
- private $type;
- private $index = 0;
- /**
- * @param string $filePath Path to file
- * @param string $originalFileName Original filename (in case of an uploaded file), used to determine file type,
- * optional
- * @param string $mimeType MIME type from an upload, used to determine file type, optional
- * @throws Exception
- */
- public function __construct($filePath, $originalFileName = '', $mimeType = '') {
- if (! is_readable($filePath)) {
- throw new Exception('PHPExcel_Reader: File (' . $filePath . ') not readable');
- }
- $defaultTimeZone = @date_default_timezone_get();
- if ($defaultTimeZone) {
- date_default_timezone_set($defaultTimeZone);
- }
- // Checking the other parameters for correctness
- // This should be a check for string but we're lenient
- if (! empty($originalFileName) && ! is_scalar($originalFileName)) {
- throw new Exception('PHPExcel_Reader: Original file (2nd parameter) is not a string or a scalar value.');
- }
- if (! empty($mimeType) && ! is_scalar($mimeType)) {
- throw new Exception('PHPExcel_Reader: Mime type (3nd parameter) is not a string or a scalar value.');
- }
- // 1. Determine type
- if (! $originalFileName) {
- $originalFileName = $filePath;
- }
- $mimeType = $mimeType ?: mime_content_type($filePath);
- $Extension = strtolower(pathinfo($originalFileName, PATHINFO_EXTENSION));
- if ($mimeType) {
- switch ($mimeType) {
- case 'application/octet-stream':
- $this->type = $Extension == 'xlsx' ? self::TYPE_XLSX : self::TYPE_CSV;
- break;
- case 'text/x-comma-separated-values':
- case 'text/comma-separated-values':
- case 'application/x-csv':
- case 'text/x-csv':
- case 'text/csv':
- case 'application/csv':
- case 'application/vnd.msexcel':
- case 'text/plain':
- $this->type = self::TYPE_CSV;
- break;
- case 'application/msexcel':
- case 'application/x-msexcel':
- case 'application/x-ms-excel':
- case 'application/x-excel':
- case 'application/x-dos_ms_excel':
- case 'application/xls':
- case 'application/x-xls':
- case 'application/download':
- case 'application/vnd.ms-office':
- case 'application/msword':
- case 'application/xlt':
- $this->type = self::TYPE_XLS;
- break;
- case 'application/vnd.ms-excel':
- case 'application/excel':
- $this->type = $Extension == 'csv' ? self::TYPE_CSV : self::TYPE_XLS;
- break;
- case 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet':
- case 'application/vnd.openxmlformats-officedocument.spreadsheetml.template':
- case 'application/zip':
- case 'application/x-zip':
- case 'application/xlsx':
- case 'application/xltx':
- $this->type = self::TYPE_XLSX;
- break;
- }
- }
- if (! $this->type) {
- switch ($Extension) {
- case 'xlsx':
- case 'xltx': // XLSX template
- case 'xlsm': // Macro-enabled XLSX
- case 'xltm': // Macro-enabled XLSX template
- $this->type = self::TYPE_XLSX;
- break;
- case 'xls':
- case 'xlt':
- $this->type = self::TYPE_XLS;
- break;
- default:
- $this->type = self::TYPE_CSV;
- break;
- }
- }
- // Pre-checking XLS files, in case they are renamed CSV or XLSX files
- if ($this->type == self::TYPE_XLS) {
- $this->handle = new PHPExcel_Reader_XLS($filePath);
- if ($this->handle->error) {
- $this->handle->__destruct();
- if (is_resource($Ziphandle = zip_open($filePath))) {
- $this->type = self::TYPE_XLSX;
- zip_close($Ziphandle);
- } else {
- $this->type = self::TYPE_CSV;
- }
- }
- }
- // 2. Create handle
- switch ($this->type) {
- case self::TYPE_XLSX:
- $this->handle = new PHPExcel_Reader_XLSX($filePath);
- break;
- case self::TYPE_CSV:
- $this->handle = new PHPExcel_Reader_CSV($filePath, 1);
- break;
- case self::TYPE_XLS:
- // Everything already happens above
- break;
- }
- }
- /**
- * get the type of file
- * @return string
- */
- public function getFileType() {
- return $this->type;
- }
- /**
- * Gets information about separate sheets in the given file
- * @return array Associative array where key is sheet index and value is sheet name
- */
- public function Sheets() {
- return $this->handle->Sheets();
- }
- /**
- * Changes the current sheet to another from the file.
- * Note that changing the sheet will rewind the file to the beginning, even if
- * the current sheet index is provided.
- *
- * @param int $index Sheet index
- *
- * @return bool True if sheet could be changed to the specified one,
- * false if not (for example, if incorrect index was provided.
- */
- public function ChangeSheet($index) {
- return $this->handle->ChangeSheet($index);
- }
- /**
- * Rewind the Iterator to the first element.
- * Similar to the reset() function for arrays in PHP
- */
- public function rewind() {
- $this->index = 0;
- if ($this->handle) {
- $this->handle->rewind();
- }
- }
- /**
- * Return the current element.
- * Similar to the current() function for arrays in PHP
- * @return mixed current element from the collection
- */
- public function current() {
- if ($this->handle) {
- return $this->handle->current();
- }
- return null;
- }
- /**
- * Move forward to next element.
- * Similar to the next() function for arrays in PHP
- */
- public function next() {
- if ($this->handle) {
- $this->index++;
- return $this->handle->next();
- }
- return null;
- }
- /**
- * Return the identifying key of the current element.
- * Similar to the key() function for arrays in PHP
- * @return mixed either an integer or a string
- */
- public function key() {
- if ($this->handle) {
- return $this->handle->key();
- }
- return null;
- }
- /**
- * Check if there is a current element after calls to rewind() or next().
- * Used to check if we've iterated to the end of the collection
- * @return boolean FALSE if there's nothing more to iterate over
- */
- public function valid() {
- if ($this->handle) {
- return $this->handle->valid();
- }
- return false;
- }
- /**
- * total of file number
- * return int
- */
- public function count() {
- if ($this->handle) {
- return $this->handle->count();
- }
- return 0;
- }
- /**
- * Method for SeekableIterator interface. Takes a posiiton and traverses the file to that position
- * The value can be retrieved with a `current()` call afterwards.
- *
- * @param int $position position in file
- * @return null
- */
- public function seek($position) {
- if (! $this->handle) {
- throw new OutOfBoundsException('PHPExcel_Reader: No file opened');
- }
- $Currentindex = $this->handle->key();
- if ($Currentindex != $position) {
- if ($position < $Currentindex || is_null($Currentindex) || $position == 0) {
- $this->rewind();
- }
- while ($this->handle->valid() && ($position > $this->handle->key())) {
- $this->handle->next();
- }
- if (! $this->handle->valid()) {
- throw new OutOfBoundsException('PHPExcel_Reader: position ' . $position . ' not found');
- }
- }
- return null;
- }
- }
|