Programación [Extracción de Datos de un Excel] [PHP]

Si eres de esa persona que quiere aprender a programar en aplicaciones Web
Aqui les traigo codigo sencillo para extraccion de datos de un archivo Excel mediante lenguaje de programacion PHP

php_elephant.png

CODIGO :


$archivo = "../Vista/Excel/excel.xls";
$inputFileType = PHPExcel_IOFactory::identify($archivo);
$objReader = PHPExcel_IOFactory::createReader($inputFileType);
$objPHPExcel2 = $objReader->load($archivo);
$sheet = $objPHPExcel2->getSheet(0);
$highestRow = $sheet->getHighestRow();
$highestColumn = $sheet->getHighestColumn();


        for ($row = 1 ; $row <= $highestRow; $row++){ 

                   $cedula = $sheet->getCell("A".$row)->getValue();
                   $nombre = $sheet->getCell("B".$row)->getValue();
                   $monto = $sheet->getCell("C".$row)->getValue();
H2
H3
H4
3 columns
2 columns
1 column
Join the conversation now
Logo
Center