Fix sample which does't work (#123)

This commit is contained in:
tsmsogn
2017-03-24 22:09:32 +09:00
committed by Adrien Crivelli
parent 2e24a1e1b4
commit 0f0de914f4
39 changed files with 150 additions and 280 deletions
+3 -7
View File
@@ -10,20 +10,16 @@ date_default_timezone_set('Europe/London');
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>PHPExcel Reader Example #04</title>
<title>PhpSpreadsheet Reader Example #04</title>
</head>
<body>
<h1>PHPExcel Reader Example #04</h1>
<h1>PhpSpreadsheet Reader Example #04</h1>
<h2>Simple File Reader using the \PhpOffice\PhpSpreadsheet\IOFactory to Identify a Reader to Use</h2>
<?php
/** Include path **/
set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/');
/** \PhpOffice\PhpSpreadsheet\IOFactory */
include 'PHPExcel/IOFactory.php';
require_once __DIR__ . '/../../../src/Bootstrap.php';
$inputFileName = './sampleData/example1.xls';