phpexcel

Solutions on MaxInterview for phpexcel by the best coders in the world

showing results for - "phpexcel"
Hugo
13 Jul 2019
1// Create phpExcel sheet, sheet 1, get active sheet
2
3$this->PhpExcel->createSheet(1);
4$this->PhpExcel->setActiveSheetIndex(1);
5$sheet = $this->PhpExcel->getActiveSheet();