I\'m trying to use PHPExcel with CodeIgniter.
My problem is when i want to use this method below, I got PHP Fatal Error : Cannot redeclare class IOFactory
You could try this one and it works for me:
$filePath = "uploads/import/test.xlx"; $this->load->library('PHPExcel'); $objReader = new PHPExcel_Reader_Excel5(); $objPHPExcel = $objReader->load($filePath); $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true);