Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?php
-
- use PhpOffice\PhpSpreadsheet\IOFactory;
-
- require __DIR__ . '/../Header.php';
-
- // Read from Xls (.xls) template
- $helper->log('Load Xlsx template file');
- $reader = IOFactory::createReader('Xls');
- $spreadsheet = $reader->load(__DIR__ . '/../templates/27template.xls');
-
- // Save
- $helper->write($spreadsheet, __FILE__);
|