PhpSpreadsheet/docs/Examples/Reader/exampleReader18.php

47 lines
1.1 KiB
PHP
Raw Normal View History

2013-04-28 17:06:20 +00:00
<?php
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>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
2017-03-24 13:09:32 +00:00
<title>PhpSpreadsheet Reader Example #18</title>
2013-04-28 17:06:20 +00:00
</head>
<body>
2017-03-24 13:09:32 +00:00
<h1>PhpSpreadsheet Reader Example #18</h1>
2013-04-28 17:06:20 +00:00
<h2>Reading list of WorkSheets without loading entire file</h2>
<?php
2017-03-24 13:09:32 +00:00
require_once __DIR__ . '/../../../src/Bootstrap.php';
2013-04-28 17:06:20 +00:00
2016-10-06 11:49:41 +00:00
$inputFileType = 'Xls';
2016-10-06 11:39:10 +00:00
// $inputFileType = 'Xlsx';
// $inputFileType = 'Xml';
// $inputFileType = 'Ods';
2013-04-28 17:06:20 +00:00
// $inputFileType = 'Gnumeric';
$inputFileName = './sampleData/example1.xls';
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
$reader = IOFactory::createReader($inputFileType);
$worksheetNames = $reader->listWorksheetNames($inputFileName);
2013-04-28 17:06:20 +00:00
echo '<h3>Worksheet Names</h3>';
echo '<ol>';
foreach ($worksheetNames as $worksheetName) {
echo '<li>', $worksheetName, '</li>';
2013-04-28 17:06:20 +00:00
}
echo '</ol>';
?>
<body>
</html>