2010-10-19 12:40:52 +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>
2010-10-20 11:30:09 +00:00
< h2 > Simple File Reader for Multiple CSV Files </ h2 >
2010-10-19 12:40:52 +00:00
< ? php
/** Include path **/
set_include_path ( get_include_path () . PATH_SEPARATOR . '../../../Classes/' );
/** PHPExcel_IOFactory */
include 'PHPExcel/IOFactory.php' ;
2010-10-20 11:30:09 +00:00
$inputFileType = 'CSV' ;
$inputFileNames = array ( './sampleData/example1.csv' , './sampleData/example2.csv' );
$objReader = PHPExcel_IOFactory :: createReader ( $inputFileType );
$inputFileName = array_shift ( $inputFileNames );
echo 'Loading file ' , pathinfo ( $inputFileName , PATHINFO_BASENAME ), ' into WorkSheet #1 using IOFactory with a defined reader type of ' , $inputFileType , '<br />' ;
$objPHPExcel = $objReader -> load ( $inputFileName );
$objPHPExcel -> getActiveSheet () -> setTitle ( pathinfo ( $inputFileName , PATHINFO_BASENAME ));
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 );
$objReader -> loadIntoExisting ( $inputFileName , $objPHPExcel );
$objPHPExcel -> getActiveSheet () -> setTitle ( pathinfo ( $inputFileName , PATHINFO_BASENAME ));
2010-10-19 12:40:52 +00:00
}
echo '<hr />' ;
2010-10-20 11:30:09 +00:00
echo $objPHPExcel -> getSheetCount (), ' worksheet' ,(( $objPHPExcel -> getSheetCount () == 1 ) ? '' : 's' ), ' loaded<br /><br />' ;
$loadedSheetNames = $objPHPExcel -> getSheetNames ();
foreach ( $loadedSheetNames as $sheetIndex => $loadedSheetName ) {
echo '<b>Worksheet #' , $sheetIndex , ' -> ' , $loadedSheetName , '</b><br />' ;
$objPHPExcel -> setActiveSheetIndexByName ( $loadedSheetName );
$sheetData = $objPHPExcel -> getActiveSheet () -> toArray ( null , true , true , true );
var_dump ( $sheetData );
2010-10-20 12:57:51 +00:00
echo '<br /><br />' ;
2010-10-20 11:30:09 +00:00
}
2010-10-19 12:40:52 +00:00
?>
< body >
</ html >