mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-22 16:35:00 +00:00
2a0a53cd6a
Because they tend to clutter our code a lot and unfortunately, there are lots of false positives. Instead, it would probably be better to deal with false positives out of band, via the Scrutinizer web UI.
16 lines
543 B
PHP
16 lines
543 B
PHP
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\IOFactory;
|
|
use PhpOffice\PhpSpreadsheet\Reader\Exception as ReaderException;
|
|
|
|
require __DIR__ . '/../Header.php';
|
|
|
|
$inputFileName = __DIR__ . '/sampleData/non-existing-file.xls';
|
|
$helper->log('Loading file ' . pathinfo($inputFileName, PATHINFO_BASENAME) . ' using IOFactory to identify the format');
|
|
|
|
try {
|
|
$spreadsheet = IOFactory::load($inputFileName);
|
|
} catch (ReaderException $e) {
|
|
$helper->log('Error loading file "' . pathinfo($inputFileName, PATHINFO_BASENAME) . '": ' . $e->getMessage());
|
|
}
|