Remove obsolete $obj prefix in cod sample

This commit is contained in:
Adrien Crivelli
2016-12-03 22:32:54 +09:00
parent 90da50f3c7
commit 17d1976526
24 changed files with 389 additions and 389 deletions
+2 -2
View File
@@ -34,8 +34,8 @@ $inputFileName = './sampleData/example1.xls';
echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' information using IOFactory with a defined reader type of ',$inputFileType,'<br />';
$objReader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($inputFileType);
$worksheetData = $objReader->listWorksheetInfo($inputFileName);
$reader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($inputFileType);
$worksheetData = $reader->listWorksheetInfo($inputFileName);
echo '<h3>Worksheet Information</h3>';
echo '<ol>';