2922a13764
This introduce a helper class that should be used to log things, avoiding a lot of boilerplate code. Also all output are made in /tmp folder instead of beside the script itself. This is because there is a high chance that the folder containing the script is not writtable by webserver. So using the /tmp folder makes it more likely to works in a variety of setup.
24 lines
705 B
PHP
24 lines
705 B
PHP
<?php
|
|
|
|
require __DIR__ . '/Header.php';
|
|
|
|
// Create temporary file that will be read
|
|
$sampleSpreadsheet = require __DIR__ . '/templates/sampleSpreadsheet.php';
|
|
$filename = $helper->getTemporaryFilename();
|
|
$writer = new \PhpSpreadsheet\Writer\Excel2007($sampleSpreadsheet);
|
|
$writer->save($filename);
|
|
|
|
$inputFileType = \PhpSpreadsheet\IOFactory::identify($filename);
|
|
$reader = \PhpSpreadsheet\IOFactory::createReader($inputFileType);
|
|
$sheetList = $reader->listWorksheetNames($filename);
|
|
$sheetInfo = $reader->listWorksheetInfo($filename);
|
|
|
|
$helper->log('File Type:');
|
|
var_dump($inputFileType);
|
|
|
|
$helper->log('Worksheet Names:');
|
|
var_dump($sheetList);
|
|
|
|
$helper->log('Worksheet Names:');
|
|
var_dump($sheetInfo);
|