酒店预订平台
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.
 
 
 
 
 
 

14 wiersze
322 B

  1. <?php
  2. use PhpOffice\PhpSpreadsheet\IOFactory;
  3. require __DIR__ . '/../Header.php';
  4. // Read from Xls (.xls) template
  5. $helper->log('Load Xlsx template file');
  6. $reader = IOFactory::createReader('Xls');
  7. $spreadsheet = $reader->load(__DIR__ . '/../templates/27template.xls');
  8. // Save
  9. $helper->write($spreadsheet, __FILE__);