PhpSpreadsheet 与 PhpExcel 活动单元格起始编号。什么是正确的价值观?
PhpSpreadsheet vs PhpExcel active cell start numbers. What are the correct values?
我们以前使用 Excel 但现在开始使用电子表格,因为它是未来。
最近在我们的应用程序中,我必须进行更改,
这是我们的excel文件逻辑。
来自
var $excel_start_row_index=1;
var $excel_start_column_index=0;
到
var $excel_start_row_index=1;
var $excel_start_column_index=1;
因为我们没有显示一列。也许我认为它发生在我们当前的作曲家更新中。因此,我看到了关于如何设置样式的其他一些更改,并且 applyFromArray 具有用于设置背景颜色的新样式数组。那么库中的这个变化就是为了获取启动单元格。
我明白了
namespace PhpOffice\PhpSpreadsheet\Worksheet;
/**
* Active cell. (Only one!).
*
* @var string
*/
private $activeCell = 'A1';
But where can I find the numerical representation of it? Like $activeColumn = 0 , $activeRow = 1. something like it.
"A" 的等价数值是 0 还是 1。
这里Github Issue See the second comment by Mark Baker他说PhpExcel里面是0开头的。 Php电子表格中是否相同?
经过多次讨论和辩论,决定从 1 开始列索引以尝试更加一致 https://gitter.im/PHPOffice/PhpSpreadsheet?at=59fa9f27976e63937e17fd27
我们以前使用 Excel 但现在开始使用电子表格,因为它是未来。 最近在我们的应用程序中,我必须进行更改,
这是我们的excel文件逻辑。
来自
var $excel_start_row_index=1;
var $excel_start_column_index=0;
到
var $excel_start_row_index=1;
var $excel_start_column_index=1;
因为我们没有显示一列。也许我认为它发生在我们当前的作曲家更新中。因此,我看到了关于如何设置样式的其他一些更改,并且 applyFromArray 具有用于设置背景颜色的新样式数组。那么库中的这个变化就是为了获取启动单元格。
我明白了
namespace PhpOffice\PhpSpreadsheet\Worksheet;
/**
* Active cell. (Only one!).
*
* @var string
*/
private $activeCell = 'A1';
But where can I find the numerical representation of it? Like $activeColumn = 0 , $activeRow = 1. something like it.
"A" 的等价数值是 0 还是 1。
这里Github Issue See the second comment by Mark Baker他说PhpExcel里面是0开头的。 Php电子表格中是否相同?
经过多次讨论和辩论,决定从 1 开始列索引以尝试更加一致 https://gitter.im/PHPOffice/PhpSpreadsheet?at=59fa9f27976e63937e17fd27