-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathExcelReader.php
More file actions
221 lines (194 loc) · 4.94 KB
/
Copy pathExcelReader.php
File metadata and controls
221 lines (194 loc) · 4.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<?php
namespace Ddeboer\DataImport\Reader;
/**
* Reads Excel files with the help of PHPExcel
*
* PHPExcel must be installed.
*
* @author David de Boer <david@ddeboer.nl>
*
* @link http://phpexcel.codeplex.com/
* @link https://github.com/logiQ/PHPExcel
*/
class ExcelReader implements CountableReader, \SeekableIterator
{
/**
* @var \PHPExcel_Worksheet
*/
protected $worksheet;
/**
* @var string
*/
protected $maxColumn;
/**
* @var int
*/
protected $maxRow;
/**
* @var integer
*/
protected $headerRowNumber;
/**
* @var integer
*/
protected $pointer = 1;
/**
* @var array
*/
protected $columnHeaders;
/**
* Total number of rows
*
* @var integer
*/
protected $count;
/**
* @param \SplFileObject $file Excel file
* @param integer $headerRowNumber Optional number of header row
* @param integer $activeSheet Index of active sheet to read from
* @param boolean $readOnly If set to false, the reader take care of the excel formatting (slow)
*/
public function __construct(\SplFileObject $file, $headerRowNumber = null, $activeSheet = null, $readOnly = true)
{
$reader = \PHPExcel_IOFactory::createReaderForFile($file->getPathName());
$reader->setReadDataOnly($readOnly);
/** @var \PHPExcel $excel */
$excel = $reader->load($file->getPathname());
if (null !== $activeSheet) {
$excel->setActiveSheetIndex($activeSheet);
}
$this->worksheet = $excel->getActiveSheet();
$this->maxColumn = $this->worksheet->getHighestColumn();
$this->maxRow = $this->worksheet->getHighestRow();
if (null !== $headerRowNumber) {
$this->setHeaderRowNumber($headerRowNumber);
}
}
/**
* Return the current row as an array
*
* If a header row has been set, an associative array will be returned
*
* @return array
*/
public function current()
{
$row = current($this->worksheet->rangeToArray(sprintf('A%d:%s%d',$this->pointer,$this->maxColumn,$this->pointer)));
// If the CSV has column headers, use them to construct an associative
// array for the columns in this line
if (!empty($this->columnHeaders)) {
// Count the number of elements in both: they must be equal.
// If not, ignore the row
if (count($this->columnHeaders) == count($row)) {
return array_combine(array_values($this->columnHeaders), $row);
}
} else {
// Else just return the column values
return $row;
}
}
/**
* Get column headers
*
* @return array
*/
public function getColumnHeaders()
{
return $this->columnHeaders;
}
/**
* Set column headers
*
* @param array $columnHeaders
*/
public function setColumnHeaders(array $columnHeaders)
{
$this->columnHeaders = $columnHeaders;
}
/**
* Rewind the file pointer
*
* If a header row has been set, the pointer is set just below the header
* row. That way, when you iterate over the rows, that header row is
* skipped.
*/
public function rewind()
{
if (null === $this->headerRowNumber) {
$this->pointer = 1;
} else {
$this->pointer = $this->headerRowNumber + 1;
}
}
/**
* Set header row number
*
* @param integer $rowNumber Number of the row that contains column header names
*/
public function setHeaderRowNumber($rowNumber)
{
$rowNumber++;
$this->headerRowNumber = $rowNumber;
$res = $this->worksheet->rangeToArray(sprintf('A%d:%s%d',$rowNumber,$this->maxColumn,$rowNumber));
$this->setColumnHeaders(current($res));
$this->pointer = $rowNumber;
}
/**
* {@inheritdoc}
*/
public function next()
{
$this->pointer++;
}
/**
* {@inheritdoc}
*/
public function valid()
{
return ($this->pointer < $this->maxRow);
}
/**
* {@inheritdoc}
*/
public function key()
{
return $this->pointer;
}
/**
* {@inheritdoc}
*/
public function seek($pointer)
{
$this->pointer = $pointer;
}
/**
* {@inheritdoc}
*/
public function count()
{
$maxRow = $this->maxRow;
if (null !== $this->headerRowNumber) {
$maxRow -= $this->headerRowNumber;
}
return $maxRow;
}
/**
* {@inheritdoc}
*/
public function getFields()
{
return $this->columnHeaders;
}
/**
* Get a row
*
* @param integer $number
*
* @return array
*/
public function getRow($number)
{
$this->seek($number);
return $this->current();
}
}