我一直在到处寻找如何使用两个现有文件执行此操作,看起来所有文档都在创建新文件。我想获取其中一个文件并将第二个文件作为新工作表添加到其中,然后将其保存到服务器。我一直在尝试这样无济于事:
$file="test.xls";
$file2="test2.xls";
$outputFile = "final.xls";
$phpExcel = new PHPExcel($file);
$phpExcel->getActiveSheet();
$phpExcel->setActiveSheetIndex(0);
$phpExcel->addSheet($file2);
header("Content-Type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$outputFile");
header("Cache-Control: max-age=0");
$objWriter = PHPExcel_IOFactory::createWriter($phpExcel, "Excel5");
file_put_contents($outputFile, $objWriter);
任何帮助将不胜感激。PHP 非常新。