File "20_Read_Ods.php"
Full Path: /home/isoftco/public_html/hrm/vendor/phpoffice/phpspreadsheet/samples/Basic/20_Read_Ods.php
File size: 317 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
use PhpOffice\PhpSpreadsheet\IOFactory;
require __DIR__ . '/../Header.php';
$filename = __DIR__ . '/../templates/OOCalcTest.ods';
$callStartTime = microtime(true);
$spreadsheet = IOFactory::load($filename);
$helper->logRead('Ods', $filename, $callStartTime);
// Save
$helper->write($spreadsheet, __FILE__);