使用for循环遍历excel范围

时间:2013-04-17 15:36:38

标签: php for-loop

我正在使用PHPExcel创建一个*.xlsx文档,而我正在尝试遍历范围内的一组单元格。我可以拆分单元格以获得范围中的第一个和最后一个,但是可以使用PHP for循环遍历它们吗?感谢。

$first_cell = 'A4';
$last_cell = 'M4';

for(...) :

endfor;

1 个答案:

答案 0 :(得分:2)

如下:

foreach (range('A','M') as $letter) {

    $current=$letter.'4'
    // where $current is the cell you are doing stuff to in the loop iteration
}