2016-11-27 06:45:15 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								< ? php  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								error_reporting ( E_ALL );  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								set_time_limit ( 0 );  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								date_default_timezone_set ( 'Europe/London' );  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								?> 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< html >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< head >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< meta  http - equiv = " Content-Type "  content = " text/html; charset=UTF-8 "  />  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< title > PHPExcel  Reader  Example  #13</title>
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ head >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< body >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< h1 > PHPExcel  Reader  Example  #13</h1>
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< h2 > Simple  File  Reader  for  Multiple  CSV  Files </ h2 >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< ? php  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								/** Include path **/  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								set_include_path ( get_include_path ()  .  PATH_SEPARATOR  .  '../../../Classes/' );  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-11-27 15:51:44 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								/** \PhpOffice\PhpSpreadsheet\IOFactory */  
						 
					
						
							
								
									
										
										
										
											2016-11-27 06:45:15 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								include  'PHPExcel/IOFactory.php' ;  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								$inputFileType  =  'CSV' ;  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								$inputFileNames  =  [ './sampleData/example1.csv' ,  './sampleData/example2.csv' ];  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-11-27 15:51:44 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								$objReader  =  \PhpOffice\PhpSpreadsheet\IOFactory :: createReader ( $inputFileType );  
						 
					
						
							
								
									
										
										
										
											2016-11-27 06:45:15 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								$inputFileName  =  array_shift ( $inputFileNames );  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								echo  'Loading file ' , pathinfo ( $inputFileName ,  PATHINFO_BASENAME ), ' into WorkSheet #1 using IOFactory with a defined reader type of ' , $inputFileType , '<br />' ;  
						 
					
						
							
								
									
										
										
										
											2016-11-27 15:51:44 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								$spreadsheet  =  $objReader -> load ( $inputFileName );  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								$spreadsheet -> getActiveSheet () -> setTitle ( pathinfo ( $inputFileName ,  PATHINFO_BASENAME ));  
						 
					
						
							
								
									
										
										
										
											2016-11-27 06:45:15 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								foreach  ( $inputFileNames  as  $sheet  =>  $inputFileName )  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    echo  'Loading file ' , pathinfo ( $inputFileName ,  PATHINFO_BASENAME ), ' into WorkSheet #' ,( $sheet  +  2 ), ' using IOFactory with a defined reader type of ' , $inputFileType , '<br />' ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    $objReader -> setSheetIndex ( $sheet  +  1 ); 
							 
						 
					
						
							
								
									
										
										
										
											2016-11-27 15:51:44 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    $objReader -> loadIntoExisting ( $inputFileName ,  $spreadsheet ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    $spreadsheet -> getActiveSheet () -> setTitle ( pathinfo ( $inputFileName ,  PATHINFO_BASENAME )); 
							 
						 
					
						
							
								
									
										
										
										
											2016-11-27 06:45:15 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								echo  '<hr />' ;  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-11-27 15:51:44 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								echo  $spreadsheet -> getSheetCount (), ' worksheet' ,(( $spreadsheet -> getSheetCount ()  ==  1 )  ?  ''  :  's' ), ' loaded<br /><br />' ;  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								$loadedSheetNames  =  $spreadsheet -> getSheetNames ();  
						 
					
						
							
								
									
										
										
										
											2016-11-27 06:45:15 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								foreach  ( $loadedSheetNames  as  $sheetIndex  =>  $loadedSheetName )  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    echo  '<b>Worksheet #' , $sheetIndex , ' -> ' , $loadedSheetName , '</b><br />' ; 
							 
						 
					
						
							
								
									
										
										
										
											2016-11-27 15:51:44 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    $spreadsheet -> setActiveSheetIndexByName ( $loadedSheetName ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    $sheetData  =  $spreadsheet -> getActiveSheet () -> toArray ( null ,  true ,  true ,  true ); 
							 
						 
					
						
							
								
									
										
										
										
											2016-11-27 06:45:15 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    var_dump ( $sheetData ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    echo  '<br /><br />' ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								?> 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< body >  
						 
					
						
							
								
									
										
										
										
											2010-10-19 12:40:52 +00:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								</ html >