PHPOffice/PhpSpreadsheet 将单元格列索引获取为整数
PHPOffice/PhpSpreadsheet get cell column index as integer
如何获取整数形式的单元格列索引?我已经搜索了文档,但没有找到任何内容。
如果您有单元格,则可以使用 public 函数 - getColumn()、getRow()、getCoordinate()
去阅读 Github
中的源代码
$ColumnIndex = \PhpOffice\PhpSpreadsheet\Cell\Coordinate::columnIndexFromString($Column);
如何获取整数形式的单元格列索引?我已经搜索了文档,但没有找到任何内容。
如果您有单元格,则可以使用 public 函数 - getColumn()、getRow()、getCoordinate()
去阅读 Github
中的源代码$ColumnIndex = \PhpOffice\PhpSpreadsheet\Cell\Coordinate::columnIndexFromString($Column);