60 lines
1.9 KiB
PHP
60 lines
1.9 KiB
PHP
<?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/');
|
|
|
|
/** PHPExcel_IOFactory */
|
|
include 'PHPExcel/IOFactory.php';
|
|
|
|
|
|
$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));
|
|
}
|
|
|
|
|
|
echo '<hr />';
|
|
|
|
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);
|
|
echo '<br /><br />';
|
|
}
|
|
|
|
|
|
?>
|
|
<body>
|
|
</html>
|