If you really want to read the EXCEL file, you can find an example in the official document: https://github.com/PHPOffice/PHPExcel/blob/develop/Examples/28iterator.php
The code:
$phpExcelObject = $this->get('phpexcel')->createPHPExcelObject(); $file = $this->get('kernel')->getRootDir()."/../web/uploads/import/membres.xlsx"; if (!file_exists($file)) { exit("Please run 05featuredemo.php first." ); } $objPHPExcel = \PHPExcel_IOFactory::load($file); echo date('H:i:s') , " Iterate worksheets" , EOL; foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) { echo 'Worksheet - ' , $worksheet->getTitle() , EOL; foreach ($worksheet->getRowIterator() as $row) { echo ' Row number - ' , $row->getRowIndex() , EOL; $cellIterator = $row->getCellIterator(); $cellIterator->setIterateOnlyExistingCells(false); // Loop all cells, even if it is not set foreach ($cellIterator as $cell) { if (!is_null($cell)) { echo ' Cell - ' , $cell->getCoordinate() , ' - ' , $cell->getCalculatedValue() , EOL; } } } } // Echo memory peak usage echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
source share