| 
									
										
										
										
											2013-04-28 17:06:20 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-17 22:02:17 +00:00
										 |  |  | use PhpOffice\PhpSpreadsheet\IOFactory; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-28 17:06:20 +00:00
										 |  |  | error_reporting(E_ALL); | 
					
						
							|  |  |  | set_time_limit(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | date_default_timezone_set('Europe/London'); | 
					
						
							|  |  |  | ?>
 | 
					
						
							|  |  |  | <html> | 
					
						
							| 
									
										
										
										
											2017-08-03 10:03:24 +00:00
										 |  |  |     <head> | 
					
						
							|  |  |  |         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | 
					
						
							| 
									
										
										
										
											2013-04-28 17:06:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-03 10:03:24 +00:00
										 |  |  |         <title>PhpSpreadsheet Reader Example #18</title>
 | 
					
						
							| 
									
										
										
										
											2013-04-28 17:06:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-03 10:03:24 +00:00
										 |  |  |     </head> | 
					
						
							|  |  |  |     <body> | 
					
						
							| 
									
										
										
										
											2013-04-28 17:06:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-03 10:03:24 +00:00
										 |  |  |         <h1>PhpSpreadsheet Reader Example #18</h1>
 | 
					
						
							|  |  |  |         <h2>Reading list of WorkSheets without loading entire file</h2> | 
					
						
							|  |  |  |         <?php | 
					
						
							|  |  |  |         require_once __DIR__ . '/../../../src/Bootstrap.php'; | 
					
						
							| 
									
										
										
										
											2013-04-28 17:06:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-03 10:03:24 +00:00
										 |  |  |         $inputFileType = 'Xls'; | 
					
						
							|  |  |  |         $inputFileName = './sampleData/example1.xls'; | 
					
						
							| 
									
										
										
										
											2013-04-28 17:06:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-03 10:03:24 +00:00
										 |  |  |         echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' information using IOFactory with a defined reader type of ', $inputFileType, '<br />'; | 
					
						
							| 
									
										
										
										
											2013-04-28 17:06:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-03 10:03:24 +00:00
										 |  |  |         $reader = IOFactory::createReader($inputFileType); | 
					
						
							|  |  |  |         $worksheetNames = $reader->listWorksheetNames($inputFileName); | 
					
						
							| 
									
										
										
										
											2013-04-28 17:06:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-03 10:03:24 +00:00
										 |  |  |         echo '<h3>Worksheet Names</h3>'; | 
					
						
							|  |  |  |         echo '<ol>'; | 
					
						
							|  |  |  |         foreach ($worksheetNames as $worksheetName) { | 
					
						
							|  |  |  |             echo '<li>', $worksheetName, '</li>'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         echo '</ol>'; | 
					
						
							|  |  |  |         ?>
 | 
					
						
							|  |  |  |     <body> | 
					
						
							| 
									
										
										
										
											2013-04-28 17:06:20 +00:00
										 |  |  | </html> |