最新服务器上的版本,以后用这个
wangzhenxin
2023-11-19 bc164b8bdbfbdf1d8229a5ced6b08d7cb8db7361
commit | author | age
2207d6 1 # PHPExcel User Documentation – Reading Spreadsheet Files
W 2
3 ## Spreadsheet Reader Options
4
5 Once you have created a reader object for the workbook that you want to load, you have the opportunity to set additional options before executing the load() method.
6
7 ### Reading Only Data from a Spreadsheet File
8
9 If you're only interested in the cell values in a workbook, but don't need any of the cell formatting information, then you can set the reader to read only the data values and any formulae from each cell using the setReadDataOnly() method.
10
11 ```php
12 $inputFileType = 'Excel5';
13 $inputFileName = './sampleData/example1.xls';
14
15 /**  Create a new Reader of the type defined in $inputFileType  **/
16 $objReader = PHPExcel_IOFactory::createReader($inputFileType);
17 /**  Advise the Reader that we only want to load cell data  **/
18 $objReader->setReadDataOnly(true);
19 /**  Load $inputFileName to a PHPExcel Object  **/
20 $objPHPExcel = $objReader->load($inputFileName);
21 ```
22  > See Examples/Reader/exampleReader05.php for a working example of this code.
23
24 It is important to note that Workbooks (and PHPExcel) store dates and times as simple numeric values: they can only be distinguished from other numeric values by the format mask that is applied to that cell. When setting read data only to true, PHPExcel doesn't read the cell format masks, so it is not possible to differentiate between dates/times and numbers.
25
26 The Gnumeric loader has been written to read the format masks for date values even when read data only has been set to true, so it can differentiate between dates/times and numbers; but this change hasn't yet been implemented for the other readers.
27
28 Reading Only Data from a Spreadsheet File applies to Readers:
29
30 Reader    | Y/N |Reader  | Y/N |Reader        | Y/N |  
31 ----------|:---:|--------|:---:|--------------|:---:|  
32 Excel2007 | YES | Excel5 | YES | Excel2003XML | YES |  
33 OOCalc    | YES | SYLK   | NO  | Gnumeric     | YES |  
34 CSV       | NO  | HTML   | NO
35
36 ### Reading Only Named WorkSheets from a File
37
38 If your workbook contains a number of worksheets, but you are only interested in reading some of those, then you can use the setLoadSheetsOnly() method to identify those sheets you are interested in reading.
39
40 To read a single sheet, you can pass that sheet name as a parameter to the setLoadSheetsOnly() method.
41
42 ```php
43 $inputFileType = 'Excel5'; 
44 $inputFileName = './sampleData/example1.xls'; 
45 $sheetname = 'Data Sheet #2'; 
46
47 /**  Create a new Reader of the type defined in $inputFileType  **/ 
48 $objReader = PHPExcel_IOFactory::createReader($inputFileType); 
49 /**  Advise the Reader of which WorkSheets we want to load  **/ 
50 $objReader->setLoadSheetsOnly($sheetname); 
51 /**  Load $inputFileName to a PHPExcel Object  **/ 
52 $objPHPExcel = $objReader->load($inputFileName); 
53 ```
54  > See Examples/Reader/exampleReader07.php for a working example of this code.
55
56 If you want to read more than just a single sheet, you can pass a list of sheet names as an array parameter to the setLoadSheetsOnly() method.
57
58 ```php
59 $inputFileType = 'Excel5'; 
60 $inputFileName = './sampleData/example1.xls'; 
61 $sheetnames = array('Data Sheet #1','Data Sheet #3'); 
62
63 /**  Create a new Reader of the type defined in $inputFileType  **/ 
64 $objReader = PHPExcel_IOFactory::createReader($inputFileType); 
65 /**  Advise the Reader of which WorkSheets we want to load  **/ 
66 $objReader->setLoadSheetsOnly($sheetnames); 
67 /**  Load $inputFileName to a PHPExcel Object  **/ 
68 $objPHPExcel = $objReader->load($inputFileName);
69 ```
70  > See Examples/Reader/exampleReader08.php for a working example of this code.
71
72 To reset this option to the default, you can call the setLoadAllSheets() method.
73
74 ```php
75 $inputFileType = 'Excel5';
76 $inputFileName = './sampleData/example1.xls';
77
78 /**  Create a new Reader of the type defined in $inputFileType  **/
79 $objReader = PHPExcel_IOFactory::createReader($inputFileType);
80 /**  Advise the Reader to load all Worksheets  **/
81 $objReader->setLoadAllSheets();
82 /**  Load $inputFileName to a PHPExcel Object  **/
83 $objPHPExcel = $objReader->load($inputFileName);
84 ```
85  > See Examples/Reader/exampleReader06.php for a working example of this code.
86
87 Reading Only Named WorkSheets from a File applies to Readers:
88
89 Reader    | Y/N |Reader  | Y/N |Reader        | Y/N |  
90 ----------|:---:|--------|:---:|--------------|:---:|  
91 Excel2007 | YES | Excel5 | YES | Excel2003XML | YES |  
92 OOCalc    | YES | SYLK   | NO  | Gnumeric     | YES |  
93 CSV       | NO  | HTML   | NO
94
95 ### Reading Only Specific Columns and Rows from a File (Read Filters)
96
97 If you are only interested in reading part of a worksheet, then you can write a filter class that identifies whether or not individual cells should be read by the loader. A read filter must implement the PHPExcel_Reader_IReadFilter interface, and contain a readCell() method that accepts arguments of $column, $row and $worksheetName, and return a boolean true or false that indicates whether a workbook cell identified by those arguments should be read or not.
98
99 ```php
100 $inputFileType = 'Excel5'; 
101 $inputFileName = './sampleData/example1.xls'; 
102 $sheetname = 'Data Sheet #3'; 
103
104
105 /**  Define a Read Filter class implementing PHPExcel_Reader_IReadFilter  */ 
106 class MyReadFilter implements PHPExcel_Reader_IReadFilter 
107
108     public function readCell($column, $row, $worksheetName = '') { 
109         //  Read rows 1 to 7 and columns A to E only 
110         if ($row >= 1 && $row <= 7) { 
111             if (in_array($column,range('A','E'))) { 
112                 return true; 
113             } 
114         } 
115         return false; 
116     } 
117
118
119 /**  Create an Instance of our Read Filter  **/ 
120 $filterSubset = new MyReadFilter(); 
121
122 /**  Create a new Reader of the type defined in $inputFileType  **/ 
123 $objReader = PHPExcel_IOFactory::createReader($inputFileType); 
124 /**  Tell the Reader that we want to use the Read Filter  **/ 
125 $objReader->setReadFilter($filterSubset); 
126 /**  Load only the rows and columns that match our filter to PHPExcel  **/ 
127 $objPHPExcel = $objReader->load($inputFileName); 
128 ```
129  > See Examples/Reader/exampleReader09.php for a working example of this code.
130
131 This example is not particularly useful, because it can only be used in a very specific circumstance (when you only want cells in the range A1:E7 from your worksheet. A generic Read Filter would probably be more useful:
132
133 ```php
134 /**  Define a Read Filter class implementing PHPExcel_Reader_IReadFilter  */ 
135 class MyReadFilter implements PHPExcel_Reader_IReadFilter 
136
137     private $_startRow = 0; 
138     private $_endRow   = 0; 
139     private $_columns  = array(); 
140
141     /**  Get the list of rows and columns to read  */ 
142     public function __construct($startRow, $endRow, $columns) { 
143         $this->_startRow = $startRow; 
144         $this->_endRow   = $endRow; 
145         $this->_columns  = $columns; 
146     } 
147
148     public function readCell($column, $row, $worksheetName = '') { 
149         //  Only read the rows and columns that were configured 
150         if ($row >= $this->_startRow && $row <= $this->_endRow) { 
151             if (in_array($column,$this->_columns)) { 
152                 return true; 
153             } 
154         } 
155         return false; 
156     } 
157
158
159 /**  Create an Instance of our Read Filter, passing in the cell range  **/ 
160 $filterSubset = new MyReadFilter(9,15,range('G','K'));
161 ```
162  > See Examples/Reader/exampleReader10.php for a working example of this code.
163
164 This can be particularly useful for conserving memory, by allowing you to read and process a large workbook in “chunks”: an example of this usage might be when transferring data from an Excel worksheet to a database.
165
166 ```php
167 $inputFileType = 'Excel5'; 
168 $inputFileName = './sampleData/example2.xls'; 
169
170
171 /**  Define a Read Filter class implementing PHPExcel_Reader_IReadFilter  */ 
172 class chunkReadFilter implements PHPExcel_Reader_IReadFilter 
173
174     private $_startRow = 0; 
175     private $_endRow   = 0; 
176
177     /**  Set the list of rows that we want to read  */ 
178     public function setRows($startRow, $chunkSize) { 
179         $this->_startRow = $startRow; 
180         $this->_endRow   = $startRow + $chunkSize; 
181     } 
182
183     public function readCell($column, $row, $worksheetName = '') { 
184         //  Only read the heading row, and the configured rows 
185         if (($row == 1) || ($row >= $this->_startRow && $row < $this->_endRow)) { 
186             return true; 
187         } 
188         return false; 
189     } 
190
191
192
193 /**  Create a new Reader of the type defined in $inputFileType  **/ 
194 $objReader = PHPExcel_IOFactory::createReader($inputFileType); 
195
196
197 /**  Define how many rows we want to read for each "chunk"  **/ 
198 $chunkSize = 2048; 
199 /**  Create a new Instance of our Read Filter  **/ 
200 $chunkFilter = new chunkReadFilter(); 
201
202 /**  Tell the Reader that we want to use the Read Filter  **/ 
203 $objReader->setReadFilter($chunkFilter); 
204
205 /**  Loop to read our worksheet in "chunk size" blocks  **/ 
206 for ($startRow = 2; $startRow <= 65536; $startRow += $chunkSize) { 
207     /**  Tell the Read Filter which rows we want this iteration  **/ 
208     $chunkFilter->setRows($startRow,$chunkSize); 
209     /**  Load only the rows that match our filter  **/ 
210     $objPHPExcel = $objReader->load($inputFileName); 
211     //    Do some processing here 
212
213 ```
214  > See Examples/Reader/exampleReader12.php for a working example of this code.
215
216 Using Read Filters applies to:
217
218 Reader    | Y/N |Reader  | Y/N |Reader        | Y/N |  
219 ----------|:---:|--------|:---:|--------------|:---:|  
220 Excel2007 | YES | Excel5 | YES | Excel2003XML | YES |  
221 OOCalc    | YES | SYLK   | NO  | Gnumeric     | YES |  
222 CSV       | YES | HTML   | NO
223
224 ### Combining Multiple Files into a Single PHPExcel Object
225
226 While you can limit the number of worksheets that are read from a workbook file using the setLoadSheetsOnly() method, certain readers also allow you to combine several individual "sheets" from different files into a single PHPExcel object, where each individual file is a single worksheet within that workbook. For each file that you read, you need to indicate which worksheet index it should be loaded into using the setSheetIndex() method of the $objReader, then use the loadIntoExisting() method rather than the load() method to actually read the file into that worksheet.
227
228 ```php
229 $inputFileType = 'CSV'; 
230 $inputFileNames = array('./sampleData/example1.csv',
231     './sampleData/example2.csv'
232     './sampleData/example3.csv'
233 ); 
234
235 /**  Create a new Reader of the type defined in $inputFileType  **/ 
236 $objReader = PHPExcel_IOFactory::createReader($inputFileType); 
237
238
239 /**  Extract the first named file from the array list  **/ 
240 $inputFileName = array_shift($inputFileNames); 
241 /**  Load the initial file to the first worksheet in a PHPExcel Object  **/ 
242 $objPHPExcel = $objReader->load($inputFileName); 
243 /**  Set the worksheet title (to the filename that we've loaded)  **/ 
244 $objPHPExcel->getActiveSheet()
245     ->setTitle(pathinfo($inputFileName,PATHINFO_BASENAME)); 
246
247
248 /**  Loop through all the remaining files in the list  **/ 
249 foreach($inputFileNames as $sheet => $inputFileName) { 
250     /**  Increment the worksheet index pointer for the Reader  **/ 
251     $objReader->setSheetIndex($sheet+1); 
252     /**  Load the current file into a new worksheet in PHPExcel  **/ 
253     $objReader->loadIntoExisting($inputFileName,$objPHPExcel); 
254     /**  Set the worksheet title (to the filename that we've loaded)  **/ 
255     $objPHPExcel->getActiveSheet()
256         ->setTitle(pathinfo($inputFileName,PATHINFO_BASENAME)); 
257
258 ```
259  > See Examples/Reader/exampleReader13.php for a working example of this code.
260
261 Note that using the same sheet index for multiple sheets won't append files into the same sheet, but overwrite the results of the previous load. You cannot load multiple CSV files into the same worksheet.
262
263 Combining Multiple Files into a Single PHPExcel Object applies to:
264
265 Reader    | Y/N |Reader  | Y/N |Reader        | Y/N |  
266 ----------|:---:|--------|:---:|--------------|:---:|  
267 Excel2007 | NO  | Excel5 | NO  | Excel2003XML | NO  |  
268 OOCalc    | NO  | SYLK   | YES | Gnumeric     | NO  |  
269 CSV       | YES | HTML   | NO
270
271 ###  Combining Read Filters with the setSheetIndex() method to split a large CSV file across multiple Worksheets
272
273 An Excel5 BIFF .xls file is limited to 65536 rows in a worksheet, while the Excel2007 Microsoft Office Open XML SpreadsheetML .xlsx file is limited to 1,048,576 rows in a worksheet; but a CSV file is not limited other than by available disk space. This means that we wouldn’t ordinarily be able to read all the rows from a very large CSV file that exceeded those limits, and save it as an Excel5 or Excel2007 file. However, by using Read Filters to read the CSV file in “chunks” (using the chunkReadFilter Class that we defined in section  REF _Ref275604563 \r \p 5.3 above), and the setSheetIndex() method of the $objReader, we can split the CSV file across several individual worksheets.
274
275 ```php
276 $inputFileType = 'CSV'; 
277 $inputFileName = './sampleData/example2.csv'; 
278
279
280 echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; 
281 /**  Create a new Reader of the type defined in $inputFileType  **/ 
282 $objReader = PHPExcel_IOFactory::createReader($inputFileType); 
283
284
285 /**  Define how many rows we want to read for each "chunk"  **/ 
286 $chunkSize = 65530; 
287 /**  Create a new Instance of our Read Filter  **/ 
288 $chunkFilter = new chunkReadFilter(); 
289
290 /**  Tell the Reader that we want to use the Read Filter  **/ 
291 /**    and that we want to store it in contiguous rows/columns  **/
292
293 $objReader->setReadFilter($chunkFilter)
294     ->setContiguous(true);
295
296 /**  Instantiate a new PHPExcel object manually  **/ 
297 $objPHPExcel = new PHPExcel(); 
298
299 /**  Set a sheet index  **/ 
300 $sheet = 0; 
301 /**  Loop to read our worksheet in "chunk size" blocks  **/ 
302 /**  $startRow is set to 2 initially because we always read the headings in row #1  **/ 
303 for ($startRow = 2; $startRow <= 1000000; $startRow += $chunkSize) { 
304     /**  Tell the Read Filter which rows we want to read this loop  **/ 
305     $chunkFilter->setRows($startRow,$chunkSize); 
306
307     /**  Increment the worksheet index pointer for the Reader  **/ 
308     $objReader->setSheetIndex($sheet); 
309     /**  Load only the rows that match our filter into a new worksheet  **/ 
310     $objReader->loadIntoExisting($inputFileName,$objPHPExcel); 
311     /**  Set the worksheet title for the sheet that we've justloaded)  **/
312     /**    and increment the sheet index as well  **/ 
313     $objPHPExcel->getActiveSheet()->setTitle('Country Data #'.(++$sheet)); 
314
315 ```
316  > See Examples/Reader/exampleReader14.php for a working example of this code.
317
318 This code will read 65,530 rows at a time from the CSV file that we’re loading, and store each "chunk" in a new worksheet.
319
320 The setContiguous() method for the Reader is important here. It is applicable only when working with a Read Filter, and identifies whether or not the cells should be stored by their position within the CSV file, or their position relative to the filter.
321
322 For example, if the filter returned true for cells in the range B2:C3, then with setContiguous set to false (the default) these would be loaded as B2:C3 in the PHPExcel object; but with setContiguous set to true, they would be loaded as A1:B2.
323
324 Splitting a single loaded file across multiple worksheets applies to:
325
326 Reader    | Y/N |Reader  | Y/N |Reader        | Y/N |  
327 ----------|:---:|--------|:---:|--------------|:---:|  
328 Excel2007 | NO  | Excel5 | NO  | Excel2003XML | NO  |  
329 OOCalc    | NO  | SYLK   | NO  | Gnumeric     | NO  |  
330 CSV       | YES | HTML   | NO
331
332 ### Pipe or Tab Separated Value Files
333
334 The CSV loader defaults to loading a file where comma is used as the separator, but you can modify this to load tab- or pipe-separated value files using the setDelimiter() method.
335
336 ```php
337 $inputFileType = 'CSV'; 
338 $inputFileName = './sampleData/example1.tsv'; 
339
340 /**  Create a new Reader of the type defined in $inputFileType  **/ $objReader = PHPExcel_IOFactory::createReader($inputFileType); 
341 /**  Set the delimiter to a TAB character  **/ 
342 $objReader->setDelimiter("\t"); 
343 //    $objReader->setDelimiter('|');
344
345 /**  Load the file to a PHPExcel Object  **/ 
346 $objPHPExcel = $objReader->load($inputFileName);
347 ```
348  > See Examples/Reader/exampleReader15.php for a working example of this code.
349
350 In addition to the delimiter, you can also use the following methods to set other attributes for the data load:
351
352 setEnclosure() | default is "  
353 setLineEnding() | default is PHP_EOL  
354 setInputEncoding() | default is UTF-8  
355
356 Setting CSV delimiter applies to:
357
358 Reader    | Y/N |Reader  | Y/N |Reader        | Y/N |  
359 ----------|:---:|--------|:---:|--------------|:---:|  
360 Excel2007 | NO  | Excel5 | NO  | Excel2003XML | NO  |  
361 OOCalc    | NO  | SYLK   | NO  | Gnumeric     | NO  |  
362 CSV       | YES | HTML   | NO
363
364 ### A Brief Word about the Advanced Value Binder
365
366 When loading data from a file that contains no formatting information, such as a CSV file, then data is read either as strings or numbers (float or integer). This means that PHPExcel does not automatically recognise dates/times (such as "16-Apr-2009" or "13:30"), booleans ("TRUE" or "FALSE"), percentages ("75%"), hyperlinks ("http://www.phpexcel.net"), etc as anything other than simple strings. However, you can apply additional processing that is executed against these values during the load process within a Value Binder.
367
368 A Value Binder is a class that implement the PHPExcel_Cell_IValueBinder interface. It must contain a bindValue() method that accepts a PHPExcel_Cell and a value as arguments, and return a boolean true or false that indicates whether the workbook cell has been populated with the value or not. The Advanced Value Binder implements such a class: amongst other tests, it identifies a string comprising "TRUE" or "FALSE" (based on locale settings) and sets it to a boolean; or a number in scientific format (e.g. "1.234e-5") and converts it to a float; or dates and times, converting them to their Excel timestamp value – before storing the value in the cell object. It also sets formatting for strings that are identified as dates, times or percentages. It could easily be extended to provide additional handling (including text or cell formatting) when it encountered a hyperlink, or HTML markup within a CSV file.
369
370 So using a Value Binder allows a great deal more flexibility in the loader logic when reading unformatted text files.
371
372 ```php
373 /**  Tell PHPExcel that we want to use the Advanced Value Binder  **/ 
374 PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() ); 
375
376 $inputFileType = 'CSV'; 
377 $inputFileName = './sampleData/example1.tsv'; 
378
379 $objReader = PHPExcel_IOFactory::createReader($inputFileType); 
380 $objReader->setDelimiter("\t"); 
381 $objPHPExcel = $objReader->load($inputFileName);
382 ```
383  > See Examples/Reader/exampleReader15.php for a working example of this code.
384
385 Loading using a Value Binder applies to:
386
387 Reader    | Y/N |Reader  | Y/N |Reader        | Y/N |  
388 ----------|:---:|--------|:---:|--------------|:---:|  
389 Excel2007 | NO  | Excel5 | NO  | Excel2003XML | NO  |  
390 OOCalc    | NO  | SYLK   | NO  | Gnumeric     | NO  |  
391 CSV       | YES | HTML   | YES
392