I am trying to read just one sheet from an xls document and I have this:
$objPHPExcel = $objReader->load(\'daily/\' . $fisierInbound); $objWorksheet = $
You can do it easier than getting list of worksheet names:
$objPHPExcel->setActiveSheetIndex(2); $worksheet = $objPHPExcel->getActiveSheet();
Loads #2 (third) worksheet.