我正在使用PHPExcel创建一个*.xlsx
文档,而我正在尝试遍历范围内的一组单元格。我可以拆分单元格以获得范围中的第一个和最后一个,但是可以使用PHP for
循环遍历它们吗?感谢。
$first_cell = 'A4';
$last_cell = 'M4';
for(...) :
endfor;
答案 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
}