PhpSpreadsheet/samples/43_Merge_workbooks.php
Adrien Crivelli 2922a13764
Reorganize code samples
This introduce a helper class that should be used to log things,
avoiding a lot of boilerplate code.

Also all output are made in /tmp folder instead of beside the script
itself. This is because there is a high chance that the folder containing
the script is not writtable by webserver. So using the /tmp folder
makes it more likely to works in a variety of setup.
2016-09-01 01:17:13 +09:00

25 lines
831 B
PHP

<?php
require __DIR__ . '/Header.php';
$helper->log('Load MergeBook1 from Excel2007 file');
$filename1 = __DIR__ . '/templates/43mergeBook1.xlsx';
$callStartTime = microtime(true);
$spreadsheet1 = \PhpSpreadsheet\IOFactory::load($filename1);
$helper->logRead('Excel2007', $filename1, $callStartTime);
$helper->log('Load MergeBook2 from Excel2007 file');
$filename2 = __DIR__ . '/templates/43mergeBook2.xlsx';
$callStartTime = microtime(true);
$spreadsheet2 = \PhpSpreadsheet\IOFactory::load($filename2);
$helper->logRead('Excel2007', $filename2, $callStartTime);
foreach ($spreadsheet2->getSheetNames() as $sheetName) {
$sheet = $spreadsheet2->getSheetByName($sheetName);
$sheet->setTitle($sheet->getTitle() . ' copied');
$spreadsheet1->addExternalSheet($sheet);
}
// Save
$helper->write($spreadsheet1, __FILE__);