I have one .xlsx file containing several worksheets. This .xlsx is generated using the php library phpoffice / phpspreadsheet. What I need to do is extract a specific worksheet from this file and create a new one - a separate .xlsx file.
My PHP code look like this:
<?php
// autoload of phpoffice library
require 'vendor/autoload.php';
use PhpOffice\PhpSpreadsheet\IOFactory;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
use PhpOffice\PhpSpreadsheet\Spreadsheet;
// load .xlsx file from html form
$reader = IOFactory::createReader('Xlsx');
$spreadsheet = $reader->load($_FILES['in_file']['tmp_name']);
// setting the required sheet
$sheet = $spreadsheet->getSheetByName('required sheet');
// instance of the Worksheet object
$ws = new Worksheet($sheet);
// creating a new spreadsheet
$newSpreadsheet = new Spreadsheet();
// adding a worksheet to a new spreadsheet
$newSpreadsheet->addSheet($ws, 1);
// remove the worksheet in the first position
$newSpreadsheet->removeSheetByIndex(0);
// save the new .xlsx file
$writer = IOFactory::createWritter($newSpreadsheet, 'Xlsx');
$writer->save('new_xlsx.xlsx');
A new .xlsx file is generated, the worksheet name of this new file is set, but this worksheet is not populated with data. Why? What's missing me? Did I forget something?
You were close to getting the solution! PhpSpreadsheet allows you to use the
clone
keyword on sheet objects and then add them to other spreadsheets. I see you're getting this from an uploaded form so a simple check of the MIME Type is probably a good idea.