?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/vendor/phpoffice/phpspreadsheet/samples/Reader/



?? Go up: /home/webdevt/prestashop17/vendor/phpoffice/phpspreadsheet/samples

?? Viewing: 16_Handling_loader_exceptions_using_TryCatch.php

<?php

use PhpOffice\PhpSpreadsheet\IOFactory;

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 (InvalidArgumentException $e) {
    $helper->log('Error loading file "' . pathinfo($inputFileName, PATHINFO_BASENAME) . '": ' . $e->getMessage());
}


??

??