php PHPExcel - 如何逐行读取 Excel 工作表

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/25056030/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-25 17:37:33  来源:igfitidea点击:

PHPExcel - How can i read the Excel sheet row by row

phpphpexcel

提问by noufalcep

How can i read Excel worksheet row by row using PHPExcel? I have a sheet contains more than 100000 rows, but i want to read only 500 rows.

如何使用 PHPExcel 逐行读取 Excel 工作表?我有一张包含超过 100000 行的工作表,但我只想读取 500 行。

$sheetData = $objPHPExcel->getActiveSheet();
$highestRow = $sheetData->getHighestRow(); 
$highestColumn = $sheetData->getHighestColumn(); 
$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn); 

echo '<table>';
for ($row = 1; $row <= $highestRow; ++$row) {
    echo '<tr>';

    for ($col = 0; $col <= $highestColumnIndex; ++$col) {
    echo '<td>' . $sheetData->getCellByColumnAndRow($col, $row)->getValue() . '</td>';
    }

    echo '</tr>';
}
echo '</table>';

回答by Mark Baker

If you only want to read500 rows, then only load500 rows using a read filter:

如果您只想读取500 行,那么只使用读取过滤器加载500 行:

$inputFileType = 'Excel5';
$inputFileName = './sampleData/example2.xls';


/**  Define a Read Filter class implementing PHPExcel_Reader_IReadFilter  */
class myReadFilter implements PHPExcel_Reader_IReadFilter
{
    private $_startRow = 0;

    private $_endRow = 0;

    /**  Set the list of rows that we want to read  */
    public function setRows($startRow, $chunksize) {
        $this->_startRow    = $startRow;
        $this->_endRow      = $startRow + $chunkSize;
    }

    public function readCell($column, $row, $worksheetName = '') {
        //  Only read the heading row, and the rows that are configured in $this->_startRow and $this->_endRow
        if (($row >= $this->_startRow && $row < $this->_endRow)) {
            return true;
        }
        return false;
    }
}


/**  Create a new Reader of the type defined in $inputFileType  **/
$objReader = PHPExcel_IOFactory::createReader($inputFileType);


/**  Define how many rows we want to read for each "chunk"  **/
$chunkSize = 500;
/**  Create a new Instance of our Read Filter  **/
$chunkFilter = new myReadFilter();

/**  Tell the Reader that we want to use the Read Filter that we've Instantiated  **/
$objReader->setReadFilter($chunkFilter);

/**  Tell the Read Filter, the limits on which rows we want to read this iteration  **/
$chunkFilter->setRows(1,500);
/**  Load only the rows that match our filter from $inputFileName to a PHPExcel Object  **/
$objPHPExcel = $objReader->load($inputFileName);

See the PHPExcel User Documentation - Reading Spreadsheet Filesdocument in /Documentationfor more details on Read Filters

有关读取过滤器的更多详细信息,请参阅PHPExcel User Documentation - Reading Spreadsheet Files文档/Documentation

回答by Mher Aghabalyan

You can load 500 rows or even setting start index by setting parameters directly to the getRowIterator function.

您可以通过直接为 getRowIterator 函数设置参数来加载 500 行甚至设置起始索引。

$path = "Your File Path HERE";
$fileObj = \PHPExcel_IOFactory::load( $path );
$sheetObj = $fileObj->getActiveSheet();
$startFrom = 50; //default value is 1
$limit = 550; //default value is null
foreach( $sheetObj->getRowIterator($startFrom, $limit) as $row ){
    foreach( $row->getCellIterator() as $cell ){
        $value = $cell->getCalculatedValue();
    }
}

回答by iswinky

This loops through all rows and columns and assigns the cell value to $cellValue. If the $i is greater than 500, it breaks out the loop

这将遍历所有行和列,并将单元格值分配给 $cellValue。如果 $i 大于 500,则中断循环

$objWorksheet = $objPHPExcel->getActiveSheet();


$i = 0;
foreach ($objWorksheet->getRowIterator() as $row) {
    if ($i > 500) break;
    $i++;

    foreach ($row->getCellIterator() as $cell) {
        $cellValue = trim($cell->getCalculatedValue());
    }
}

回答by Sachin

require_once "/PATH TO PHP EXCEL FOLDER/PHPExcel.php"; 
$inputFileName = $_FILES['FILENAME'];
$objTpl = PHPExcel_IOFactory::load('./PATH TO UPLOAD FOLDER/' . $inputFileName);
$sheetData = $objTpl->getActiveSheet()->toArray(null, true, true, true);
array_shift($sheetData);
$i=0;
$test_array = array();
foreach($sheetData as $key=>$val){
    if($i < 500)
        $test_array[$i] = $val;
    $i++;   
}