Generation

generate functionThu, 06 Apr 2023

recorrer las celdas de una fila en excel

$row = $sheet->getRowIterator($fila)->current(); $cellIterator = $row->getCellIterator(); $cellIterator->setIterateOnlyExistingCells(FALSE); // This loops through all cells, // even if a cell value is not set. // By default, only cells that have a value // set will be iterated. foreach ($cellIterator as $cell) { $celda = $cell->getCoordinate(); }

Questions about programming?Chat with your personal AI assistant